python - Conda uninstall one package and one package only -


when try uninstall pandas conda virtual env, see tries uninstall more packages well:

$ conda uninstall pandas using anaconda cloud api site https://api.anaconda.org fetching package metadata: .... solving package specifications: .........  package plan package removal in environment /users/amelio/anaconda/envs/py35:  following packages downloaded:      package                    |            build     ---------------------------|-----------------     dask-0.7.6                 |           py35_0         276 kb  following packages removed:      blaze:       0.10.1-py35_0     odo:         0.5.0-py35_1     pandas:      0.18.1-np111py35_0     seaborn:     0.7.0-py35_0     statsmodels: 0.6.1-np111py35_1  following packages downgraded:      dask:        0.10.1-py35_0      --> 0.7.6-py35_0  proceed ([y]/n)? 

i uninstall pandas only , not have else downgraded.

i understand there these packages have dependencies pandas , specific versions of pandas, possible @ conda?

partial motivation

my understanding isn't easy install package github using conda. @ least isn't easy using one-liner 1 can pip.

since want use version in master, plan uninstall conda version , use pip install pandas master on official repo github.

how can this?

you can use conda remove --force.

the documentation says:

--force               forces removal of package without removing packages                       depend on it. using option                       leave environment in broken , inconsistent                       state 

Comments

Popular posts from this blog

java - Suppress Jboss version details from HTTP error response -

gridview - Yii2 DataPorivider $totalSum for a column -

Sass watch command compiles .scss files before full sftp upload -