我正在尝试在我的mac上安装MySQLdb for Python,以便我可以用它来测试。我正在运行 OS X 10.11.4 。我看的每个地方都说使用
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
multiply();
}
public static void multiply() {
// Please write your code after this line
Scanner IO = new Scanner(System.in);
System.out.print("Enter an integer, x: ");
int x = IO.nextInt();
System.out.print("Enter an integer, y: ");
int y = IO.nextInt();
System.out.print("Answer = " + (x * y));
IO.close();
}
}
每次我这样做,都会收到错误消息。
pip install MySQL-python
当我打开一个新的shell时,我正在运行该命令,我应该更改路径吗?
答案 0 :(得分:9)
使用homebrew brew install mysql-connector-c
安装mysql连接器然后使用pip pip install mysql-python
安装mysql-python或尝试PyMySQL它是一个纯python客户端库,你可以使用pip install PyMySQL
进行安装并升级{{1} }。 setuptools
。