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

Commit

Permalink
fix circleci and torch
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Nov 11, 2017
1 parent f854565 commit f1719ff
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,43 +57,43 @@ jobs:
sudo apt-get install -y python-pygame
- run:
name: install dependencies 1
name: install dependencies 1 - requirements_conda
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements_conda.txt
- run:
name: install dependencies 2
name: install dependencies 2 - requirements
command: |
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
- run:
name: install fairtest
name: install dependencies 3 - sphinxcontrib, datashader, pyPDF, natgrid
command: |
python3 -m venv venv
. venv/bin/activate
pip install https://github.com/sdpython/fairtest/releases/download/0.1/fairtest-0.1-py3-none-any.whl
pip install git+https://github.com/sdpython/sphinxcontrib-images.git --upgrade --no-deps
pip install git+https://github.com/bokeh/datashader.git --upgrade --no-deps
pip install git+https://github.com/sdpython/pyPdf --upgrade --no-deps
pip install git+https://github.com/matplotlib/natgrid --upgrade --no-deps
- run:
name: install torch
name: install dependencies 4 - fairtest
command: |
python3 -m venv venv
. venv/bin/activate
conda install pytorch torchvision -c soumith
pip install torchvision
pip install https://github.com/sdpython/fairtest/releases/download/0.1/fairtest-0.1-py3-none-any.whl
- run:
name: install dependencies 3
name: install install dependencies 4 - torch
command: |
python3 -m venv venv
. venv/bin/activate
pip install git+https://github.com/sdpython/sphinxcontrib-images.git --upgrade --no-deps
pip install git+https://github.com/bokeh/datashader.git --upgrade --no-deps
pip install git+https://github.com/sdpython/pyPdf --upgrade --no-deps
pip install git+https://github.com/matplotlib/natgrid --upgrade --no-deps
pip3 install http://download.pytorch.org/whl/cu75/torch-0.2.0.post3-cp36-cp36m-manylinux1_x86_64.whl
pip3 install torchvision
- run:
name: install basemap
Expand Down

0 comments on commit f1719ff

Please sign in to comment.