Is it still necessary to install CUDA before using the conda tensorflow-gpu package?

Do i now have two versions of CUDA installed and how do I check this? No. conda installs the bare minimum redistributable library components required to support the CUDA accelerated packages they offer. The package name cudatoolkit is a complete misnomer. It is nothing of the sort. Even though it is now greatly expanded in … Read more

How to change default Anaconda python environment

If you just want to temporarily change to another environment, use source activate environment-name ETA: This may be deprecated. I believe the current correct command is: source conda activate environment-name (you can create environment-name with conda create) To change permanently, there is no method except creating a startup script that runs the above code. Typically … Read more

Conda command is not recognized on Windows 10

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

Error installing geopandas:” A GDAL API version must be specified ” in Anaconda

pip install wheel pip install pipwin pipwin install numpy pipwin install pandas pipwin install shapely pipwin install gdal pipwin install fiona pipwin install pyproj pipwin install six pipwin install rtree pipwin install geopandas here are the source links: http://geopandas.org/install.html#installation https://pip.pypa.io/en/latest/user_guide/#installing-from-wheels https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy If you still have problems, consider uninstalling the above (pip uninstall) and reinstalling.

How to install R packages that are not available in “R-essentials”?

Now I have found the documentation: This is the documentation that explains how to generate R packages that are only available in the CRAN repository: https://www.continuum.io/content/conda-data-science Go to the section “Building a conda R package”. (Hint: As long as the R package is available under anaconda.org use this resource. See here: https://www.continuum.io/blog/developer/jupyter-and-conda-r) alistaire‘s answer is … Read more