diff --git a/.github/scripts/python.sh b/.github/scripts/python.sh index c72e9abd6..08b8084a0 100644 --- a/.github/scripts/python.sh +++ b/.github/scripts/python.sh @@ -39,8 +39,6 @@ function install_dependencies() if [ "${GTSAM_WITH_TBB:-OFF}" == "ON" ]; then install_tbb fi - - $PYTHON -m pip install -r $GITHUB_WORKSPACE/python/requirements.txt } function build() diff --git a/docker/ubuntu-gtsam-python/Dockerfile b/docker/ubuntu-gtsam-python/Dockerfile index 85eed4d4e..4a7c4b37f 100644 --- a/docker/ubuntu-gtsam-python/Dockerfile +++ b/docker/ubuntu-gtsam-python/Dockerfile @@ -6,9 +6,6 @@ FROM borglab/ubuntu-gtsam:bionic # Install pip RUN apt-get install -y python3-pip python3-dev -# Install python wrapper requirements -RUN python3 -m pip install -U -r /usr/src/gtsam/python/requirements.txt - # Run cmake again, now with python toolbox on WORKDIR /usr/src/gtsam/build RUN cmake \ diff --git a/python/README.md b/python/README.md index 278d62094..e81be74fc 100644 --- a/python/README.md +++ b/python/README.md @@ -16,7 +16,7 @@ For instructions on updating the version of the [wrap library](https://github.co - This wrapper needs `pyparsing(>=2.4.2)`, and `numpy(>=1.11.0)`. These can be installed as follows: ```bash - pip install -r /python/requirements.txt + pip install -r /python/dev_requirements.txt ``` ## Install