遇到错误“ ModuleNotFoundError:没有名为'pymysql'的模块”

时间:2019-05-04 12:46:39

标签: python mysql pymysql

面对下面的错误“ ModuleNotFoundError:没有名为'pymysql'的模块”

pragma solidity ^0.4.24;

contract bank{
mapping (address => uint) private balance;
address public Owner;

function WithDrawMoreMoney(uint a) public{
    require (balance[msg.sender]>=0);
    require (address(this).balance>=0);
    require ((a) =< (address (this).balance)*(uint(1.1)));    // The problematic line
    balance[msg.sender]-=a;
    (msg.sender).transfer(a);

我是新来的,需要帮助。

enter image description here

enter image description here

3 个答案:

答案 0 :(得分:0)

确保已安装。

在终端/ cmd中运行此

windows

class Pagecontroller extends CI_Controller {

    public function anypage()
    {
        echo "any page here";
    }

}

或简单地:

$ python3 -m pip install PyMySQL

linux

pip install PyMySQL

答案 1 :(得分:0)

此问题已解决。 我使用anaconda提示符安装了pymysql和mysql-connector。

  1. 打开Anaconda提示
  2. pip安装mysql-connector
  3. pip安装pymysql

答案 2 :(得分:0)

我也在我的电脑上修复了这个问题,我花了 1 天时间 :) 所以去你的 cmd 或终端写:pip uninstall pymysql

python -m pip --upgrade pip pip install pymysql

这将修复它,因为您使用的 pip 版本无法为模块构建轮子