🌬️

【Python】venv

2022/07/21に公開

Python3.8をインストール

$ sudo apt install python3.8
$ sudo apt install python3 -venv
$ python3 -m venv venv
$ source venv/bin/activate.fish
$ pip install -r ((入れたいもの))
$ mkdocs serve

Discussion