How can I download Anaconda for python 3.6

As suggested here, with an installation of the last anaconda you can create an environment just like Cleb explained or downgrade python : With this second solution, you may encounter some incompatibility issues with other packages. I tested it myself and did not encounter any issue but I guess it depends on the packages you installed. If you … Read more

‘Jupyter’ is not recognized as an internal or external command

Yes, This is the problem which I faced also during the installation of Jupyter Notebook. But I know the solution of this. I hope, it also works for you as well. Open cmd. Type: pip install notebook. If you Type: **jupyter notebook** – it always shows an error. So, Type: python -m notebook. Image shows running Jupyter Notebook If you feel that … Read more

How to install xgboost in Anaconda Python (Windows platform)?

The easiest way (Worked for me) is to do the following: You will get a list of install-able features like this: for example if you want to install the first one on the list mndrake/xgboost (FOR WINDOWS-64bits): If you’re in a Unix system you can choose any other package with “linux-64” on the right. Update on 22/10/2020: … Read more

Can’t open Jupyter notebook with Anaconda

It seems to be a problem with the default installation of Anaconda. So, I removed the pyzmq package, which seems to be the problematic one. This is what I have done: conda uninstall pyzmq (This also removes jupyter related packages!) conda install pyzmq (to reinstall it) conda install jupyter (to reinstall jupyter related packages) Now I can open Jupyter Notebook!

How can I rename a conda environment?

You can’t. One workaround is to create clone a new environment and then remove the original one. First, remember to deactivate your current environment. You can do this with the commands: deactivate on Windows or source deactivate on macOS/Linux. Then: Notice there are several drawbacks of this method: It redownloads packages (you can use –offline flag to disable it) Time consumed on copying … Read more

Using Pip to install packages to Anaconda Environment

For others who run into this situation, I found this to be the most straightforward solution: Run conda create -n venv_name and conda activate venv_name, where venv_name is the name of your virtual environment. Run conda install pip. This will install pip to your venv directory. Find your anaconda directory, and find the actual venv folder. It should be somewhere like /anaconda/envs/venv_name/. … Read more

how to update spyder on anaconda

To expand on juanpa.arrivillaga‘s comment: If you want to update Spyder in the root environment, then conda update spyder works for me. If you want to update Spyder for a virtual environment you have created (e.g., for a different version of Python), then conda update -n $ENV_NAME spyder where $ENV_NAME is your environment name. EDIT: In case conda update spyder isn’t working, this post indicates you … Read more

anaconda/conda – install a specific package version

There is no version 1.3.0 for rope. 1.3.0 refers to the package cached-property. The highest available version of rope is 0.9.4. You can install different versions with conda install package=version. But in this case there is only one version of rope so you don’t need that. The reason you see the cached-property in this listing is because it contains the string “rope”: “cached-p rope erty” py35_0 means that you need python version 3.5 for this … Read more

Cannot uninstall Tensorflow

The following image shows various versions of tensorflow installed however I am not able to uninstall it. I tried pip, pip3, conda and still it does not recognise tensorflow. I even tried all the possibilities from this thread Tensorflow: why ‘pip uninstall tensorflow’ cannot find tensorflow How to remove Tensorflow completely ?