以下假设已激活虚拟环境
问题1:"The C extension could not be compiled, speedups are not enabled"
原因:当使用pip安装flask时,flask package是从源码编译的,而编译时需要一些头文件(如python.h),pythonx.x-dev包含这些头文件.
When you use pip to install numpy, the packages is compiled from source. The pythonx.x-dev packages contain the necessary header files for linking against python.
解决:
apt-get install python-dev //虚拟环境中安装package不需要加sudo,否则会安装到全局环境中
问题2:安装了flask却无法import
原因:因为我在安装flask时加了sudo,flask安装到了全局环境,故无法导入
时间: 2024-10-09 19:08:15