Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8928207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:23:03+00:00 2026-06-15T08:23:03+00:00

I want to try python vcs package, but .. There is Win7 x86 on

  • 0

I want to try python vcs package, but ..

There is Win7 x86 on my comp,
python 2.7 in d:\pyth27 folder.

i downloaded and installed (using command “python.exe my_instfolder\setup.py install”) all dependencies of vcs.
Now I have:

d:\pyth27>python inst\vcs\setup.py install
running install
running bdist_egg
running egg_info
writing requirements to vcs.egg-info\requires.txt
writing vcs.egg-info\PKG-INFO
writing top-level names to vcs.egg-info\top_level.txt
writing dependency_links to vcs.egg-info\dependency_links.txt
writing entry points to vcs.egg-info\entry_points.txt
warning: manifest_maker: standard file 'setup.py' not found

reading manifest file 'vcs.egg-info\SOURCES.txt'
writing manifest file 'vcs.egg-info\SOURCES.txt'
installing library code to build\bdist.win32\egg
running install_lib
warning: install_lib: 'build\lib' does not exist -- no Python modules to install

creating build\bdist.win32\egg
creating build\bdist.win32\egg\EGG-INFO
copying vcs.egg-info\PKG-INFO -> build\bdist.win32\egg\EGG-INFO
copying vcs.egg-info\SOURCES.txt -> build\bdist.win32\egg\EGG-INFO
copying vcs.egg-info\dependency_links.txt -> build\bdist.win32\egg\EGG-INFO
copying vcs.egg-info\entry_points.txt -> build\bdist.win32\egg\EGG-INFO
copying vcs.egg-info\not-zip-safe -> build\bdist.win32\egg\EGG-INFO
copying vcs.egg-info\requires.txt -> build\bdist.win32\egg\EGG-INFO
copying vcs.egg-info\top_level.txt -> build\bdist.win32\egg\EGG-INFO
creating 'dist\vcs-0.2.2-py2.7.egg' and adding 'build\bdist.win32\egg' to it
removing 'build\bdist.win32\egg' (and everything under it)
Processing vcs-0.2.2-py2.7.egg
removing 'd:\pyth27\lib\site-packages\vcs-0.2.2-py2.7.egg' (and everything under it)
creating d:\pyth27\lib\site-packages\vcs-0.2.2-py2.7.egg
Extracting vcs-0.2.2-py2.7.egg to d:\pyth27\lib\site-packages
vcs 0.2.2 is already the active version in easy-install.pth
Installing vcs-script.py script to d:\pyth27\Scripts
Installing vcs.exe script to d:\pyth27\Scripts
Installing vcs.exe.manifest script to d:\pyth27\Scripts

Installed d:\pyth27\lib\site-packages\vcs-0.2.2-py2.7.egg
Processing dependencies for vcs==0.2.2
Searching for mock==1.0.1
Best match: mock 1.0.1
Processing mock-1.0.1-py2.7.egg
mock 1.0.1 is already the active version in easy-install.pth

Using d:\pyth27\lib\site-packages\mock-1.0.1-py2.7.egg
Searching for pygments==1.5
Best match: pygments 1.5
Processing pygments-1.5-py2.7.egg
pygments 1.5 is already the active version in easy-install.pth
Installing pygmentize-script.py script to d:\pyth27\Scripts
Installing pygmentize.exe script to d:\pyth27\Scripts
Installing pygmentize.exe.manifest script to d:\pyth27\Scripts

Using d:\pyth27\lib\site-packages\pygments-1.5-py2.7.egg
Finished processing dependencies for vcs==0.2.2

but when i try to import it, i get:

d:\pyth27>python
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import vcs
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named vcs

P.S. auto-installers of python does not work because i’m under corporative proxy with ntlm-authorization

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T08:23:04+00:00Added an answer on June 15, 2026 at 8:23 am

    Looks like something went wrong:

    warning: install_lib: 'build\lib' does not exist -- no Python modules to install
    

    You have to run setup.py from within the source distribution directory:

    cd inst\vcs
    d:\pyth27\inst\vcs>python setup.py install
    

    The setup.py script included expect to be able to find files in the current working directory and running the script from outside the directory fails those expectations.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Working with Python in Emacs if I want to add a try/except to a
I want to try the latest VS2010 RC. But I am not very comfortable
I have try-except block in python, and I want to do nothing when exception
I want to write some python package installing script in Python into virtualenv. I
For some perverse reason, I want to try Python 1.0.. How would I go
I want to try out SICP with Python. Can any one point to materials
So, I've been trying to start using Python.h for a little project I want
I try to use Python envoy for better access to Shell programs. But i
I want to integrate exp(-(x^2 + y^2)) in python using sympy library. I could
I want to insert data in MYSQL database using python here my code import

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.