Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Nov 11, 2019
1 parent 8a52d7c commit 048ad0a
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions .circleci/config.yml
Expand Up @@ -40,23 +40,27 @@ jobs:
name: Install pyproj (1)
command: |
echo "deb http://deb.debian.org/debian sid main" | sudo tee /etc/apt/sources.list.d/proj.list
echo "deb http://deb.debian.org/debian sid main" | sudo tee /etc/apt/sources.list.d/proj-bin.list
echo "deb http://deb.debian.org/debian sid main" | sudo tee /etc/apt/sources.list.d/proj-data.list
echo "deb http://deb.debian.org/debian sid main" | sudo tee /etc/apt/sources.list.d/libgeos-dev.list
echo "deb http://deb.debian.org/debian sid main" | sudo tee /etc/apt/sources.list.d/libproj-dev.list
sudo apt-get -qq update
sudo apt-get -t sid install -y libproj-dev proj-bin=6.2.1-1 proj-data libgeos-dev
- run:
name: Install pyproj (2)
command: |
python3 -m venv venv
. venv/bin/activate
pip install git+https://github.com/pyproj4/pyproj.git
# needed otherwise error: ImportError: libproj.so.9: cannot open shared object file: No such file or directory
- run:
name: Install pyproj (3)
command: |
wget http://es.archive.ubuntu.com/ubuntu/pool/universe/p/proj/libproj9_4.9.2-2_amd64.deb
sudo dpkg -i libproj9_4.9.2-2_amd64.deb
# - run:
# name: Install pyproj (2)
# command: |
# python3 -m venv venv
# . venv/bin/activate
# pip install git+https://github.com/pyproj4/pyproj.git
#
# # needed otherwise error: ImportError: libproj.so.9: cannot open shared object file: No such file or directory
#
# - run:
# name: Install pyproj (3)
# command: |
# wget http://es.archive.ubuntu.com/ubuntu/pool/universe/p/proj/libproj9_4.9.2-2_amd64.deb
# sudo dpkg -i libproj9_4.9.2-2_amd64.deb

- run:
name: Install cartopy
Expand Down

0 comments on commit 048ad0a

Please sign in to comment.