How to uninstall package in Anaconda installed with pip
You can use Jupyter Notebook to solve this problem : open Jupyter Notebook open a new notebook with the right kernel type !pip uninstall -y [package] in a code cell run the cell code
You can use Jupyter Notebook to solve this problem : open Jupyter Notebook open a new notebook with the right kernel type !pip uninstall -y [package] in a code cell run the cell code
I would shy away from sharing environments with other users, because if they don’t know what they are doing, they could add packages that could conflict with other packages and/or even delete packages that another user might need. The preferred approach is that after you have created an environment, you export it as a yml … Read more
Default integer type np.int_ is C long: http://docs.scipy.org/doc/numpy-1.10.1/user/basics.types.html But C long is int32 in win64. https://msdn.microsoft.com/en-us/library/9c3yd98k.aspx This is kind of a weirdness of the win64 platform.
I’m happy to inform you that there essentially are no strict disadvantages to using Mamba! It began in March 2019 as a thin wrapper around Conda, and has grown considerably by progressively rewriting Conda with equivalent new efficient C++ code. They’ve added Mamba exclusive features such as mamba repoquery. Both Conda and Mamba use a … Read more
As an alternative solution, I changed the owner of ~/.conda to myself: sudo chown -R $USER ~/.conda I think the root cause of the problem (at least in my case) was that ~/.conda was owned by root for some reason. Other solutions suggest making its access more permissive (open writing to the group or even … Read more
You have enum34 installed, which requires 2.6-3.5. Installing Python 3.6 is thus not possible without either updating enum34 to see if newer versions support 3.6, removing enum34, or installing Python 3.6 in a new environment.
I know this is old, but none of the answers here is a real solution if you want to be able to double-click Python files and have the correct interpreter used without modifying your PYTHONPATH or PATH every time you want to use a different interpreter. Sure, from the command line, activate my-environment works, but … Read more
Removing all directories inside the envs subdirectory that resides inside conda does the job. This is generally in your user folder ~. ~\.conda\envs\
Usually yeah it will. But if it doesn’t work for you, then you can try specifying absolute path to flake8 and enable it explicitly like so : “python.linting.flake8Enabled”: true, “python.linting.flake8Path”: “path/to/flake8”, you can even specify path to your conda environment : “python.condaPath”: “path/to/condaenv/”,
According to your error message you can’t upgrade conda base to python 3.10 since this would lead to incompatibilities. (Supposedly there are some issues with the numpy package.) So you’ll have to wait for the next Anaconda release. However, the whole point of conda is using virtual environments: conda create –name py10 python=3.10 This allows … Read more