python setup.py egg_info mysqlclient

前端 未结 9 1716
孤独总比滥情好
孤独总比滥情好 2020-12-05 01:05

Trying to install mysqlclient using pip3 on Python 3.6.0

$ pip3 install mysqlclient
Collecting mysqlclient
  Using cached mysqlclient-1.3.10.tar.gz
    Comp         


        
9条回答
  •  温柔的废话
    2020-12-05 01:42

    Came across this while developing a django-based website, and I needed to set up the website to communicate with a mysql database. I've not used homebrew to do any of my installations.

    Since I'm doing the development on a MacOS with Anaconda installed, I discovered that there was an issue with Anaconda. Without knowing the details, I was able to install mysqlclient with conda install mysqlclient

    Hope that helps someone else with this problem as well.

提交回复
热议问题