LoginSignup
0
0

More than 3 years have passed since last update.

root権限のないサーバーでpipでpython モジュールをインストールする

Last updated at Posted at 2021-01-05

手順

Python virtualenv を使用し、仮想環境からパッケージをインストールする。

$ curl --location --output virtualenv-16.1.0.tar.gz https://github.com/pypa/virtualenv/tarball/16.1.0
$ tar xvfz virtualenv-16.1.0.tar.gz
$ python pypa-virtualenv-****/src/virtualenv.py my_env
$ . my_env/bin/activate
(my_env)$ pip install (pillowなど)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0