Pip install forked github-repo

前端 未结 1 2006
一生所求
一生所求 2021-01-31 03:22

I\'m working on a project and need a little different functionality from the package sklearn. I\'ve forked the repo and pushed my changes. I know that I can install from github

相关标签:
1条回答
  • 2021-01-31 03:37

    try again using just (-e flag lets you git pull updates by installing it as a git repo)

    pip install -e git+git://github.com/wdonahoe/scikit-learn-fork.git@master#egg=scikit-learn
    

    more on eggs: http://mrtopf.de/blog/en/a-small-introduction-to-python-eggs/

    0 讨论(0)
提交回复
热议问题