DEV Community

Youngjoon Won
Youngjoon Won

Posted on

python venv

$ mkdir ~/venv
$ python3.11 -m venv ~/venv/py3-11
$ source ~/venv/py3-11/bin/activate
$ python3.11 -m pip install arcade
$ deactivate
Enter fullscreen mode Exit fullscreen mode

Top comments (0)