子包中的组装车轮无法安装点子?

有点像编码初学者。我一直想使用pip install安装一个软件包,该软件包可以在更新python之前获得(当前在Mac上具有Python 2.7.16和2.8.0)。

我要安装的软件包称为CITE-seq-Count(https://hoohm.github.io/CITE-seq-Count/Installation/

我已经尝试了推荐的安装方式:

   <ItemGroup>
      <Content Update="config.json">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
      </Content>
   </ItemGroup>

,并会收到涉及 pysam 软件包的错误。我尝试单独安装pysam,但也有相同的错误。我见过其他人建议在anaconda上安装,但是我不确定是否可以在其中安装并在终端上使用。谢谢您的帮助!

import requests
import re

product_uuid = re.compile(r'"product":{"id":"(\w{8}-(?:\w{4}-){3}\w{12}){1}"')
product_name = re.compile(r'<title>(.*)</title>')

url = 'https://stockx.com/supreme-steiff-bear-heather-grey'
headers = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML,like Gecko) Chrome/70.0.3538.77 Safari/537.36'
}

content = requests.get(url,headers=headers)

if content.ok:
    PRODUCT_NAME = product_name.findall(content.text)[0]
    PRODUCT_UUID = product_uuid.findall(content.text)[0]

    print(PRODUCT_NAME)
    print(PRODUCT_UUID)
h1k2l3 回答:子包中的组装车轮无法安装点子?

这是pysam中的一个问题,似乎尚未与Python 3.8完全兼容。这个问题已经存在github问题,可能值得关注一下以查看是否有解决方案: https://github.com/pysam-developers/pysam/issues/860

目前,如果您不依赖3.8功能(对我有用),则退回到Python 3.7可能是最简单的解决方案。

本文链接:https://www.f2er.com/3113427.html

大家都在问