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.

Combining conda environment.yml with pip requirements.txt

Pip dependencies can be included in the environment.yml file like this (docs): # run: conda env create –file environment.yml name: test-env dependencies: – python>=3.5 – anaconda – pip – numpy=1.13.3 # pin version for conda – pip: # works for regular pip packages – docx – gooey – matplotlib==2.0.0 # pin version for pip # … Read more

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

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

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

How to interpret conda package conflicts?

Some Practical Advice @Quantum7’s answer gives a fine literal interpretation of Conda’s conflict reporting. However, I wanted to offer a more practical take, which is that this “feature” from Conda is too non-specific to be useful in most non-trivial environments. And sometimes it won’t even include the underlying conflict. Don’t waste your time with it! … Read more

How does using conda to install a package change my python version and remove conda?

Cause Changing Python versions without updating the conda package breaks Conda. . The Python version change (2.7.14 -> 3.6.8) created a situation where the new python has a new site-packages which no longer contains a conda package, whereas if you only update within 2.7.x, this wouldn’t be an issue. Conda includes both a set of … Read more