From 72cc0fc801fc4df60cc23e6818580a91e76f4f18 Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Fri, 5 Jun 2020 14:03:24 -0700 Subject: [PATCH] use pipenv for dev dependencies --- tools/README.md | 129 ----------------------------------------- tools/requirements.txt | 13 ----- tools/ubuntu_setup.sh | 8 +-- 3 files changed, 1 insertion(+), 149 deletions(-) delete mode 100644 tools/requirements.txt diff --git a/tools/README.md b/tools/README.md index ea0fd7d83..badec0210 100644 --- a/tools/README.md +++ b/tools/README.md @@ -28,135 +28,6 @@ openpilot tools and the following setup steps are developed and tested on Ubuntu Setup ============ - 1. Run ubuntu_setup.sh, make sure everything completed correctly 2. Compile openpilot by running ```scons``` in the openpilot directory diff --git a/tools/requirements.txt b/tools/requirements.txt deleted file mode 100644 index d5887cb5e..000000000 --- a/tools/requirements.txt +++ /dev/null @@ -1,13 +0,0 @@ -aenum -atomicwrites -futures -libarchive -lru-dict -matplotlib -numpy -opencv-python -pygame -hexdump -pycurl -tenacity -av==0.5.0 diff --git a/tools/ubuntu_setup.sh b/tools/ubuntu_setup.sh index 9d3abc799..e46d7b29f 100755 --- a/tools/ubuntu_setup.sh +++ b/tools/ubuntu_setup.sh @@ -85,13 +85,7 @@ pyenv rehash pip install pipenv==2018.11.26 # pipenv setup (in openpilot dir) -pipenv install --system --deploy - -# to make tools work -pip install -r tools/requirements.txt - -# to make modeld work on PC with nvidia GPU -pip install tensorflow==2.2 +pipenv install --dev --system --deploy # for loggerd to work on ubuntu # TODO: PC should log somewhere else