在Linux & Mac 下,我们查到的很可能是软链接形式,它并不是安装的实际路径,但我们可以通过ls -l命令找到其指向的文件路径。 点我复制[root@wintest ~]# ls -l /usr/bin/python3lrwxrwxrwx 1 root root 28 Sep 7 2019 /usr/bin/python3 -> /root/python36/bin/python3.6 查找Python第三方库路径 如果...
#导入需要查看的模块frombrowsermobproxyimportserver #打印库文件位置print(server.__file__)
python 查看安装的库的路径(找site-packages) import sys print(sys.path) or which python which python3
如果你忘记了Python的安装路径,可以在命令提示符下输入以下命令: C:\Users\YourUserName>wherepython 这将输出当前计算机上 Python 的所有安装位置。 2. 查找第三方库所在位置 为了查找第三方库所在的位置,我们需要使用 sys 模块来获取模块搜索路径。您可以通过运行以下代码来获得该信息: import sys f...
查找Python第三方库路径 如果需要查找Python第三方库site-packages的存放路径,我们可以直接进入Python交互模式,借助sys.path来快速找到。 [root@wintest~]# python3Python3.6.8(default,Sep72019,18:50:26)[GCC4.8.520150623(RedHat4.8.5-11)]on linuxType"help","copyright","credits"or"license"formore informatio...
有时候,我们想要查找Python安装路径及第三方库的存放路径,但可能忘记了当初安装时的具体路径,这个时候我们就可以通过命令快速找到这些路径。 查找Python安装路径 Windows下查找命令:where python3 点我复制D:\>wherepython3D:\Python\installation\python3.exeC:\Users\wintest\AppData\Local\Microsoft\WindowsApps\python...
python_如何查看模块安装库的路径 #导入需要查看的模块frombrowsermobproxyimportserver #打印库文件位置print(server.__file__)
有时候,我们想要查找Python安装路径及第三方库的存放路径,但可能忘记了当初安装时的具体路径,这个时候我们就可以通过命令快速找到这些路径。 查找Python安装路径 Windows下查找命令:where python3 点我复制D:\>wherepython3D:\Python\installation\python3.exeC:\Users\wintest\AppData\Local\Microsoft\WindowsApps\python...