Issues with installing python libraries on Windows : CondaHTTPError: HTTP 000 CONNECTION FAILED for url
Execute the following command in the cmd prompt/terminal: conda config –set ssl_verify no
Execute the following command in the cmd prompt/terminal: conda config –set ssl_verify no
As of conda 4.4, the command is the same on all platforms. The procedure to add conda to the PATH environment variable for non-Windows platforms (on Windows you should use the Anaconda Prompt), as well as the change in environment activation procedure, is detailed in the release notes for conda 4.4.0. For conda versions older than 4.4, command is either on … Read more
In Windows, you will have to set the path to the location where you installed Anaconda3 to. For me, I installed anaconda3 into C:\Anaconda3. Therefore you need to add C:\Anaconda3 as well as C:\Anaconda3\Scripts\ to your path variable, e.g. set PATH=%PATH%;C:\Anaconda3;C:\Anaconda3\Scripts\. You can do this via powershell (see above, https://msdn.microsoft.com/en-us/library/windows/desktop/bb776899(v=vs.85).aspx ), or hit the windows … Read more
You could try to install a specific NumPy version. In your case you could use: In case of conflicts it will show the conflicting packages. For example: In this case blaze and numba prevent NumPy from upgrading.
If you don’t care which version of Plotly you install, just use pip. pip install plotly is an easy way to install the latest stable package for Plotly from PyPi. pip is a useful package and dependency management tool, which makes these things easy, but it should be noted that Anaconda’s conda tool will do the same thing. pip will install … Read more
It appears that my PATH is broken in my .zshrc file. Open it and add : Doh! Well that would explain everything. How did I miss that little semicolon? Changed: We’re good now.
You can just type “conda search” which will give you something like the following.
You will have to import Axes3D to enable the 3d plotting in matplotlib. The official tutorials on 3d plotting can be found here. So the correct imports and code would look like
You can run conda install –file requirements.txt instead of the loop, but there is no target directory in conda install. conda install installs a list of packages into a specified conda environment.
You can remove a package with the conda remove command. So for TensorFlow this would be conda remove tensorflow.