1. ホーム
  2. パイソン

[Python] using pip appears /bin/python: bad interpreter: そのようなファイルやディレクトリはありません

2022-02-25 15:14:43
<パス

pip を使用すると /bin/python: 悪いインタプリタです。そのようなファイルやディレクトリはありません。

Modifying the installation environment pipを使用した後に表示される bad interpreter: No such file or directory : プロンプトを表示します。

-bash: /home/**/pyscript/python3/bin/pip3: /home/**/pyscripts/python3/bin/python3.6: bad interpreter: No such file or directory


以下は、次のようにすれば解ける。

which pip
/home/pengwei/.conda/envs/py35/bin/pip

which python
/home/pengwei/.conda/envs/py35/bin/python

vim /home/pengwei/.conda/envs/py35/bin/pip


置く #! の後に、pythonへのパスを指定すればOKです。