C:\Python27\python.exe setup.py install
running install
running bdist_egg
running egg_info
creating ortools_examples.egg-info
writing requirements to ortools_examples.egg-info\requires.txt
writing ortools_examples.egg-info\PKG-INFO
writing top-level names to ortools_examples.egg-info\top_level.txt
writing dependency_links to ortools_examples.egg-info\dependency_links.txt
writing manifest file 'ortools_examples.egg-info\SOURCES.txt'
reading manifest file 'ortools_examples.egg-info\SOURCES.txt'
writing manifest file 'ortools_examples.egg-info\SOURCES.txt'
installing library code to build\bdist.win-amd64\egg
running install_lib
warning: install_lib: 'build\lib' does not exist -- no Python modules to install
creating build
creating build\bdist.win-amd64
creating build\bdist.win-amd64\egg
creating build\bdist.win-amd64\egg\EGG-INFO
copying ortools_examples.egg-info\PKG-INFO -> build\bdist.win-amd64\egg\EGG-INFO
copying ortools_examples.egg-info\SOURCES.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying ortools_examples.egg-info\dependency_links.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying ortools_examples.egg-info\requires.txt -> build\bdist.win-amd64\egg\EGG-INFO
copying ortools_examples.egg-info\top_level.txt -> build\bdist.win-amd64\egg\EGG-INFO
zip_safe flag not set; analyzing archive contents...
creating dist
creating 'dist\ortools_examples-6.2.4388-py2.7.egg' and adding 'build\bdist.win-amd64\egg' to it
removing 'build\bdist.win-amd64\egg' (and everything under it)
Processing ortools_examples-6.2.4388-py2.7.egg
Copying ortools_examples-6.2.4388-py2.7.egg to c:\python27\lib\site-packages
Adding ortools-examples 6.2.4388 to easy-install.pth file
Installed c:\python27\lib\site-packages\ortools_examples-6.2.4388-py2.7.egg
Processing dependencies for ortools-examples==6.2.4388
Searching for ortools==6.2.4388
No local packages or working download links found for ortools==6.2.4388
error: Could not find suitable distribution for Requirement.parse('ortools==6.2.4388')
####
Python 2.7 (r27:82525, Jul 4 2010, 07:43:08) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pip
>>> installed_packages = pip.get_installed_distributions()
>>> installed_packages_list = sorted(["%s==%s" % (i.key, i.version)
... for i in installed_packages])
>>> print(installed_packages_list)
['numpy==1.13.1', 'ortools-examples==6.2.4388', 'ortools==1.3549', 'pandas==0.20.3', 'pip==9.0.1', 'protobuf==3.3.0', 'python-dateutil==2.6.1', 'python-gflags==3.1.1', 'pytz==2017.2', 'setuptools==36.2.0', 'six==1.10.0', 'wheel==0.29.0', 'xlrd==1.0.0']
- tools\make third_party gives me the error specified on my first post.
Thanks,