What is the Python egg cache (PYTHON_EGG_CACHE)?

后端 未结 8 644
我寻月下人不归
我寻月下人不归 2020-12-04 16:23

I\'ve just upgraded from Python 2.6.1 to 2.6.4 on my development machine and upon starting a python script was presented with the following message:

C

8条回答
  •  星月不相逢
    2020-12-04 16:57

    A simple fix would be to create the directory and provide www-data access to it.

    $ mkdir /var/www/.python-eggs
    $ chown www-data:www-data /var/www/.python-eggs
    

提交回复
热议问题