Python Forum
Unable to import Private Repo using setup.py
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unable to import Private Repo using setup.py
#1
I am trying to import the private repo but I am getting an error.

from setuptools import setup, find_packages

setup(
    name = 'MyProject',
    version = '0.1.0',
    url = '',
    description = '',
    packages = find_packages(),
    install_requires = [
        'awsutils @ git+ssh://[email protected]/User1/[email protected]/#egg=awsutils'
        # 'utils @ git+ssh://[email protected]/User1/utils.git/utils.git',
    ],
    dependency_links=[
        'git+ssh://[email protected]/User1/awsutils.git#egg=awsutils-0.0.1'
        # 'git+ssh://[email protected]/User1/utils.git/utils.git#egg=utils-0.0.1',
    ]
)
error: Couldn't find a setup script in /tmp/easy_install-c05djyxv/awsutils.git
Larz60+ write Sep-02-2021, 02:45 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Tags added for you this time. Please use bbcode tags on future posts.

Also, please post complete unaltered error message.
Reply
#2
Take a look at this,not tired to add a Repo before.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Lint and private var names PatM 1 700 Dec-15-2022, 05:08 PM
Last Post: deanhystad
  Unable to import sklearn after installing any package ilango 0 1,195 Oct-25-2021, 07:03 AM
Last Post: ilango
  python 3 dns lookup private domain didact 1 2,578 Sep-19-2020, 06:01 PM
Last Post: bowlofred
  [split] Помощь по приватным ключам/Private key help sairam17519 0 1,612 Sep-07-2020, 12:55 PM
Last Post: sairam17519
  Download file from Private GitHub rep vinuvt 0 1,981 Jul-27-2020, 11:38 AM
Last Post: vinuvt
  Private package distribution abomination disadvantages research andreir 2 2,166 May-07-2020, 12:32 AM
Last Post: andreir
  Unable to import my own module ThePhantom 3 2,733 May-01-2020, 01:30 AM
Last Post: menator01
  Помощь по приватным ключам/Private key help vlrubl777 5 5,971 Mar-15-2019, 08:16 PM
Last Post: vlrubl777
  when to make attributes private? sneakyimp 10 5,895 Jan-21-2019, 02:54 PM
Last Post: sneakyimp
  Fetching private ip address from instances of an autoscaling group deepsonune 0 3,280 May-18-2018, 10:32 AM
Last Post: deepsonune

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020