python - Can't create virtualenv with jython 2.7b2 as an interpreter -
i want execute java code python i've decided install standard python interpreter, jython , join them using pyro4. pyro4 requires python > 2.5 choose use jython 2.7b. here steps made make happen:
wget -i jython-installer-2.7-b2.jar http://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.7-b1/jython-installer-2.7-b2.jar java -jar jython-installer-2.7-b2.jar jython2.7b2/bin/virtualenv-2.7 oscar
and i'm getting back:
cannot find file /home/mnowotka/jython2.7b2/include (bad symlink) new jython executable in oscar/bin/jython installing setuptools................. complete output command /home/mnowotka/oscar/bin/jython -c "#!python \"\"\"bootstra...sys.argv[1:]) " /home/mnowotka/jytho...ols-0.6c11-py2.7.egg: downloading http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg traceback (most recent call last): file "<string>", line 278, in <module> file "<string>", line 210, in main file "<string>", line 161, in download_setuptools file "/home/mnowotka/jython2.7b2/lib/socket.py", line 1651, in read data = self._sock.recv(recv_size) file "/home/mnowotka/jython2.7b2/lib/httplib.py", line 567, in read s = self.fp.read(amt) file "/home/mnowotka/jython2.7b2/lib/socket.py", line 1669, in read data = self._sock.recv(recv_size) file "/home/mnowotka/jython2.7b2/lib/socket.py", line 174, in handle_exception raise _map_exception(jlx) socket.error: [errno 32] socket closed ---------------------------------------- ...installing setuptools...done. traceback (most recent call last): file "jython2.7b2/bin/virtualenv-2.7", line 3, in <module> virtualenv.main() file "/home/mnowotka/jython2.7b2/lib/site-packages/virtualenv.py", line 970, in main create_environment(home_dir, file "/home/mnowotka/jython2.7b2/lib/site-packages/virtualenv.py", line 1090, in create_environment install_setuptools(py_executable, unzip=unzip_setuptools, file "/home/mnowotka/jython2.7b2/lib/site-packages/virtualenv.py", line 610, in install_setuptools _install_req(py_executable, unzip, file "/home/mnowotka/jython2.7b2/lib/site-packages/virtualenv.py", line 579, in _install_req call_subprocess(cmd, show_stdout=false, file "/home/mnowotka/jython2.7b2/lib/site-packages/virtualenv.py", line 1055, in call_subprocess raise oserror( oserror: command /home/mnowotka/oscar/bin/jython -c "#!python \"\"\"bootstra...sys.argv[1:])
does mean jython 2.7b2 not quite ready yet or i'm doing wrong?
Comments
Post a Comment