Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaCensi committed Oct 23, 2017
1 parent 256ef82 commit 803c8f0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 27 deletions.
7 changes: 4 additions & 3 deletions dependencies_since_image.sh → dependencies_common.sh
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
set -e
set -x

# Important: always use the python-X library if available,
# rather than doing "pip install X".

sudo apt install -y \
python-frozendict \
Expand All @@ -25,8 +23,11 @@ pip install --upgrade --user \
conftools \
comptests \
procgraph \
pymongo \
pymongo==3.5.1 \
ruamel.yaml==0.15.34




# None of this should be needed. Next time you think you need it, let me know and we figure it out. -AC
# sudo pip install --upgrade pip setuptools wheel
8 changes: 8 additions & 0 deletions dependencies_for_duckiebot.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
set -e
set -x

# Important: always use the python-X library if available,
# rather than doing "pip install X".

./dependencies_common.sh
25 changes: 1 addition & 24 deletions dependencies_for_laptop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,4 @@
set -e
set -x

# Important: always use the python-X library if available,
# rather than doing "pip install X".

sudo apt install -y \
python-frozendict \
libxslt-dev \
libxml2-dev \
python-lxml \
python-bs4 \
python-tables

sudo apt remove -y \
python-ruamel.yaml \
python-ruamel.ordereddict


pip install --upgrade --user \
PyContracts \
QuickApp \
conftools \
comptests \
procgraph \
pymongo \
ruamel.yaml==0.15.34
./dependencies_common.sh

0 comments on commit 803c8f0

Please sign in to comment.