前提・実現したいこと
python始めて、1か月のド素人です。お手柔らかに宜しくお願い致します。
djangoでアプリ開発しようとしていますが、いきなり環境構築でつまずきました。
実現したいこととしては、
pythonバージョンを切り替えたいです。
python3 --version で 3.9.0 を出力したい
現状 3.8.5
環境
python3.8.5 → python 3.9.0
pip 20.2.3 from /home/linuxbrew/.linuxbrew/lib/python3.9/site-packages/pip (python 3.8)
WSL
VSCODE
発生している問題・エラーメッセージ
pipenv shellをすると
python
1/usr/bin/py:16: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working 2 from collections import Iterable 3/usr/bin/py:16: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working 4 from collections import Iterable 5Creating a virtualenv for this project… 6Using /usr/bin/python3.9 (3.9.0) to create virtualenv… 7⠋/usr/bin/python3: No module named pipenv.pew 8 9Virtualenv location: 10Warning: Your Pipfile requires python_version 3.9, but you are using None (/bin/python). 11 $ pipenv check will surely fail. 12Spawning environment shell (/bin/bash). Use 'exit' to leave. 13 14Command 'pyenv' not found, did you mean: 15 16 command 'pyvenv' from deb python3-venv (3.8.2-0ubuntu2) 17 command 'p7env' from deb libnss3-tools (2:3.49.1-1ubuntu1.5) 18 19Try: sudo apt install <deb name> 20 21コード 22``` 23かなりの警告がでてきて、仮想環境にも入れなくなった。 24なぜかインストールしたpython3.9が使われていないみたい。 25 26### 該当のソースコード 27やけくそになり、もう一度pipenv shellしてみた。 28```python 29Shell for UNKNOWN_VIRTUAL_ENVIRONMENT already activated. 30No action taken to avoid nested environments. 31``` 32pipenv shell すると2つのバージョンが起動している?っぽい。 33### 試したこと 34・vscodeのselect python Interpruterでのバージョン切り替えをしたが、python3 --versionすると、3.8.5のままだった。 35 36・pyenvを使って、バージョン切り替えを試みたが、インストールするとさらにコンフリクトが起こり、すぐさまアンインストール。(なるべく使いたくない) 37 38・windowsのコントロールパネルで環境変数設定してみたが、python3 --versionは3.8.5のままだった。 39 40### 補足情報(FW/ツールのバージョンなど) 41 42説明不足なところがあるかと思いますが、お手柔らかにお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。