ERROR: Could not install packages due to an Oserror: [Errno 13] Permission denied: RECORD
Consider using the–user option or check the permissions
解决办法(举例说明):
pip instal hvplot
报错:
怎么改?
其实谜底就在明面上,我们来看报错内容:
Consider using the --user option or check the permissions
我们将原来的pip指令改成
pip install --user hvplot
就可以解决,结果如图: