Add non-conda install instructions
See original GitHub issueA user just posted these instructions for installing without conda, we should clean them up and document them properly:
# Install GDAL and Geopandas
!apt install gdal-bin python-gdal python3-gdal --quiet
!apt install python3-rtree --quiet
!apt install libgdal-dev libproj-dev --quiet
!apt install libgeos-dev
!pip install git+git://github.com/geopandas/geopandas.git --quiet
!pip install descartes --quiet
!pip install splot hvplot geoviews --quiet
Issue Analytics
- State:
- Created 4 years ago
- Reactions:4
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Installing conda packages - Anaconda Documentation
Conda installs packages into the anaconda/pkgs directory. ... If conda cannot find the file, try using an absolute path name instead of a...
Read more >Managing packages - Conda
Installing non -conda packages · On Windows, in your Anaconda Prompt, run activate myenv . · On macOS and Linux, in...
Read more >How to add package to conda environment without pip
example: i want to install a non-conda package at my python2.7 environment: go to terminal. activate the desired environment by: source activate ...
Read more >Installing conda packages locally: Training
Create a conda environment and install packages · Activate your conda environment; on the command line, enter (replace env_name with the name and...
Read more >Install packages in a conda environment on IU's high ... - IU KB
UITS Research Technologies recommends not issuing the conda init command, because when it runs, it adds commands to your .bashrc file that stop ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I was specifically thinking of adding a section on installing the heavy geo-dependencies for GeoViews without conda but I agree that HoloViz might be the most appropriate place to document how to use our tools in different environments (and in how far we support each) on HoloViz and then link to that section from all the installation and getting started guides.
It works perfectly. Thank you very much!!!