1

我有一个包,它有 scipy 作为依赖项。我已经知道安装 scipy throughapt-get会给我们一个过时的软件包版本,并且安装它会pip导致 Travis VM 超时,所以我决定在测试期间下载并安装 Miniconda,就像许多其他问题中所建议的那样。

但是,每当我推送到 GitHub 并且 Travis 运行我的单元测试时,它都找不到scipy包。错误信息很简单ImportError: No module named 'scipy'

这是我的.travis.yml文件的内容。python --version正确指向“Python 3.4.4 :: Continuum Analytics, Inc.” 并conda list显示已安装 scipy 0.17.0。如果有人感兴趣,这里是我的 Travis build 的完整日志

language: python
python:
  # We don't actually use the Travis Python, but this keeps it organized.
  - "3.4"
install:
  - sudo apt-get update
  # We do this conditionally because it saves us some downloading if the
  # version is the same.
  - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
      wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
    else
      wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
    fi
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  # Useful for debugging any issues with conda
  - conda info -a
  - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy scikit-learn matplotlib
  - source activate test-environment
  - conda list
  - python --version
  - whereis python
  - python setup.py install
script: nosetests
4

1 回答 1

1

您的 python 与 travis 日志中看到的虚拟环境不对应。猜测一下,我会说nosetests正在使用它自己的 venv。

所以看看nosetests:它可能有一个不同的硬编码shebang作为第一行(head -n1 $(which nosetests)可能会这样做),因此使用不同的python和不同的venv。

如果以上是正确的,解决方案可能是安装你自己版本的nosetests。这应该优先(在你的 PATH 中更早)。

于 2016-02-13T10:43:16.100 回答