我正在尝试运行一个简单的python脚本以连接到我的本地postgresl数据库。我在Mac电脑上,在完成#include <iostream>
#include <algorithm>
#include <iterator>
int main()
{
int arr[] = {1, 19, 2, 18, 4, 12, 7, 8, 10, 3, 11, 17, 9};
std::sort(std::begin(arr), std::end(arr));
for (int i{ 0 }; i < static_cast<int>(std::size(arr)); ++i)
std::cout << array[i] << ' ';
std::cout << '\n';
return 0;
}
和pip install psycopg2
之后,在我的简单脚本中仍然出现模块未找到错误。
Python 3.8.1
错误:
pip install psycopg2-binary
test.py :
Traceback (most recent call last):
File "test.py", line 1, in <module>
import psycopg2
ModuleNotFoundError: No module named 'psycopg2'