テスト目的でvirtualenvを使用しようとしています。残念ながら、私は少し壁にぶつかりました、
内部pypiサーバーからアプリをpipインストールしようとすると、失敗します。これは、virtualenvがグローバルピップではなく独自のピップを使用しているためだと思います。
グローバルピップを使用するにはどうすればよいですか?
これは私がしていることです:
virtualenv ENV
source ENV/bin/activate
pip install django <---- this works
pip install django-tyrell <---- this cant be found
これが出力です
[localhost] run: pip install django-tyrell
[localhost] out: Downloading/unpacking django-tyrell
[localhost] out: Could not find any downloads that satisfy the requirement django-tyrell
[localhost] out: No distributions at all found for django-tyrell
[localhost] out: Storing complete log in /tmp/tmpGLJUzf
[localhost] out:
Fatal error: run() received nonzero return code 1 while executing!
Requested: pip install django-tyrell
Executed: /bin/bash -l -c "cd fabrics && source ENV/bin/activate && pip install django-tyrell"