简体   繁体   English

如何在Mac上的python上安装EbaySDK

[英]How to install EbaySDK on python on Mac

I'm trying to install EbaySDK for Mac using Python but its not working. 我正在尝试使用Python安装Mac版的EbaySDK ,但无法正常工作。 I have tried to follow this , but doesn't seem like I can use yum or apt-get for Mac. 我尝试遵循此方法 ,但似乎无法在Mac上使用yumapt-get I also tried to use PIP but apparently need BeautifulSoup4 and it fails: 我也尝试使用PIP,但显然需要BeautifulSoup4 ,但它失败了:

followed steps: 遵循的步骤:

  • have python & pycharm environment installed 安装了python&pycharm环境
  • have pip installed 已安装点子
  • tried pip install beautifulsoup4 and get below error message 尝试了pip install beautifulsoup4并得到以下错误消息
  • when trying to import EbaySDk its not found. 尝试导入EbaySDk时找不到。 I really need help with this guys! 我真的需要这些家伙的帮助!

Exception: 例外:

Traceback (most recent call last):
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/basecommand.py", line 215, in main
    status = self.run(options, args)
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/commands/install.py", line 342, in run
    prefix=options.prefix_path,
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_set.py", line 784, in install
    **kwargs
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 851, in install
    self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/req/req_install.py", line 1064, in move_wheel_files
    isolated=self.isolated,
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/wheel.py", line 345, in move_wheel_files
    clobber(source, lib_dir, True)
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/wheel.py", line 316, in clobber
    ensure_dir(destdir)
  File "/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/pip/utils/__init__.py", line 83, in ensure_dir
    os.makedirs(path)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/os.py", line 157, in makedirs
    mkdir(name, mode)
OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/beautifulsoup4-4.6.0.dist-info'

You need to execute the following: 您需要执行以下操作:

sudo easy_install ebaysdk

This will install the correct package 这将安装正确的软件包

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM