{ "info": { "author": "saghul", "author_email": "saghul@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Topic :: Software Development :: Build Tools" ], "description": "pythonz: a Python installation manager\n======================================\n\nOverview\n--------\n\npythonz is a program to automate the building and installation of Python in the users $HOME. This is\na fork of the original project, `pythonbrew `_.\n\nThe original project seems to be unmaintained, and it also has some extra features which I don't really\nneed, so I made this for to make something a bit simpler that works for *me*. You may also find it\nuseful.\n\nCPython, Stackless, PyPy and Jython are supported.\n\nInstallation\n------------\n\nThe recommended way to download and install pythonz is to run these statements in your shell::\n\n curl -kL https://raw.github.com/saghul/pythonz/master/pythonz-install | bash\n\nor::\n\n fetch -o - https://raw.github.com/saghul/pythonz/master/pythonz-install | bash\n\nAfter that, pythonz installs itself to ``~/.pythonz``.\n\nPlease add the following line to the end of your ``~/.bashrc``::\n\n [[ -s $HOME/.pythonz/etc/bashrc ]] && source $HOME/.pythonz/etc/bashrc\n\nIf you need to install pythonz into somewhere else, you can do that by setting a ``PYTHONZ_ROOT`` environment variable::\n\n export PYTHONZ_ROOT=/path/to/pythonz\n curl -kLO https://raw.github.com/saghul/pythonz/master/pythonz-install\n chmod +x pythonz-install\n ./pythonz-install\n\nFor Systemwide (Multi-User) installation\n----------------------------------------\n\nIf the install script is run as root, pythonz will automatically install into ``/usr/local/pythonz``.\n\npythonz will be automatically configured for every user on the system if you install it as root.\n\nAfter installing it, where you would normally use `sudo`, non-root users will need to use `sudo-pythonz`::\n\n sudo-pythonz install 2.7.3\n\nBefore installing Pythons via Pythonz\n-------------------------------------\n\nYou might want to install some optional dependencies, for functionality that\nis often expected to be included in a Python build (it can be a bummer to discover these missing and\nhave to rebuild your python setup). These include the following, ordered by (very roughly guessed)\nprobability that you will need them::\n\nDebian family (Ubuntu...)\n^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n sudo apt-get install build-essential zlib1g-dev libbz2-dev libssl-dev libreadline-dev libncurses5-dev libsqlite3-dev libgdbm-dev libdb-dev libexpat-dev libpcap-dev liblzma-dev libpcre3-dev\n\nIf you need tkinter support, add **tk-dev**.\n\nRPM family (CentOS, RHEL...)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n yum groupinstall \"Development tools\"\n yum install zlib-devel bzip2-devel openssl-devel readline-devel ncurses-devel sqlite-devel gdbm-devel db4-devel expat-devel libpcap-devel xz-devel pcre-devel\n\nIf you need tkinter support, add **tk-devel**.\n\nOSX\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n xcode-select --install\n\nUsage\n-----\n\n::\n\n pythonz command [options] version\n\nSee the available commands\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz help\n\nTo get help on each individual command\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz help \n\n\nInstall some pythons\n^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz install 2.7.3\n pythonz install -t stackless 2.7.2\n pythonz install -t jython 2.5.2\n pythonz install -t pypy --url https://bitbucket.org/pypy/pypy/downloads/pypy-1.8-osx64.tar.bz2 1.8\n pythonz install --verbose 2.7.2\n pythonz install --configure=\"CC=gcc_4.1\" 2.7.2\n pythonz install --url http://www.python.org/ftp/python/2.7/Python-2.7.2.tgz 2.7.2\n pythonz install --file /path/to/Python-2.7.2.tgz 2.7.2\n pythonz install 2.7.3 3.2.3\n pythonz install -t pypy3 2.3.1\n\nList the installed pythons\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz list\n\nList all the available python versions for installing\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz list -a\n\nList all the available jython versions\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz list -a -t jython\n\nUninstall the specified python\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz uninstall 2.7.3\n pythonz uninstall -t stackless 3.2.2\n\nRemove stale source folders and archives\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz cleanup\n\nUpgrade pythonz to the latest version\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz update\n\nCheck the installed pythonz version\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz version\n\nPrint the path to the interpreter of a given version\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n::\n\n pythonz locate 2.7.7\n\nRecommended way to use a pythonz-installed version of Python\n------------------------------------------------------------\n\nFor Python <= 3.2\n^^^^^^^^^^^^^^^^^\n\nUse `virtualenv`, e.g.::\n\n mkvirtualenv -p $(pythonz locate 2.7.3) python2.7.3\n\nFor more information about virtualenv, checkout `its documentation `_.\n\nFor Python >= 3.3\n^^^^^^^^^^^^^^^^^\n\nUse `pyvenv` directly from Python, e.g.::\n\n /usr/local/pythonz/pythons/CPython-3.4.1/bin/pyvenv pyvenv\n\nFor more information about pyvenv, checkout `its documentation `_.\n\nDTrace support\n--------------\n\nCPython versions 2.7.6 and 3.3.4 can be built with DTrace suport. Patches adding support\nfor DTrace have been taken from `this page `_\nby Jes\u00fas Cea.\n\nBuilding Python with DTrace support::\n\n pythonz install --configure=\"--with-dtrace\" 2.7.6\n\n\nLicense\n=======\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/berdario/pythonz/tree/bd", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "pythonz-bd", "package_url": "https://pypi.org/project/pythonz-bd/", "platform": "", "project_url": "https://pypi.org/project/pythonz-bd/", "project_urls": { "Homepage": "https://github.com/berdario/pythonz/tree/bd" }, "release_url": "https://pypi.org/project/pythonz-bd/1.11.4/", "requires_dist": null, "requires_python": "", "summary": "Manage python installations in your system, berdario's shallow fork", "version": "1.11.4" }, "last_serial": 2611135, "releases": { "1.10.1": [ { "comment_text": "", "digests": { "md5": "8f5f94461b2547716654ab720fc2d18b", "sha256": "0b77d2562b99c99e1c16451e8d33b51cd377172f873eee16c8ebd96a79c3e0f8" }, "downloads": -1, "filename": "pythonz-bd-1.10.1.tar.gz", "has_sig": false, "md5_digest": "8f5f94461b2547716654ab720fc2d18b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85120, "upload_time": "2015-09-17T01:07:04", "url": "https://files.pythonhosted.org/packages/73/1d/d55d1df4e2e45e9594fd82e13b189c5a084857549822d795002289889b9b/pythonz-bd-1.10.1.tar.gz" } ], "1.10.2": [ { "comment_text": "", "digests": { "md5": "7058bf826002b8e0a53712ba07b80af9", "sha256": "8302392448be50a820caa9780be5873d42dd58d7cbf123b97fd89058c831b9ad" }, "downloads": -1, "filename": "pythonz_bd-1.10.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7058bf826002b8e0a53712ba07b80af9", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 116004, "upload_time": "2015-10-03T19:45:34", "url": "https://files.pythonhosted.org/packages/d4/99/589bb6580bb7331d02f222ec34c45955486ea65122307f1b499519feea1e/pythonz_bd-1.10.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d35cb47fc07e834957473ee41f2d4ae", "sha256": "4e24d8c2b5d6f1281ee1d0a479e9980b4c23d2c8cf9b0b3783c62c2e9fdd0e26" }, "downloads": -1, "filename": "pythonz-bd-1.10.2.tar.gz", "has_sig": false, "md5_digest": "9d35cb47fc07e834957473ee41f2d4ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85459, "upload_time": "2015-10-03T19:45:29", "url": "https://files.pythonhosted.org/packages/87/ef/ff58e8d0a290ac51061800b45fd3dca0023cad832d69db41243b1b023930/pythonz-bd-1.10.2.tar.gz" } ], "1.11.1": [ { "comment_text": "", "digests": { "md5": "44ae52339e587ac22b3e360ecbfcd4de", "sha256": "1c0215299267387b8ced28947e294cbde92f73e95790de8439c2ec9544e675d0" }, "downloads": -1, "filename": "pythonz_bd-1.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "44ae52339e587ac22b3e360ecbfcd4de", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 116763, "upload_time": "2016-01-19T20:39:54", "url": "https://files.pythonhosted.org/packages/07/41/c90e6bb2bbeacd266928128e9cfc09335b89051c19bde3db48a9bd361ae0/pythonz_bd-1.11.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6dd7b0d715ffa5d73a39562792ab177a", "sha256": "31af788e558565d04f1de597d8116c74db3e53c915d1fc6ea5b2b7108b7804bf" }, "downloads": -1, "filename": "pythonz-bd-1.11.1.tar.gz", "has_sig": false, "md5_digest": "6dd7b0d715ffa5d73a39562792ab177a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82230, "upload_time": "2016-01-19T20:39:46", "url": "https://files.pythonhosted.org/packages/cf/82/6ce54aa4a500fa75bef3b5fa3ba0fc2b89cde0a808d317339d9e05c98112/pythonz-bd-1.11.1.tar.gz" } ], "1.11.2": [ { "comment_text": "", "digests": { "md5": "33bdf5b0dd404782b2c7273978236dce", "sha256": "317ae32dc06ad0f325aff8609b024b28534e080ad8fc152465a8cde2720b04ce" }, "downloads": -1, "filename": "pythonz_bd-1.11.2-py2-none-any.whl", "has_sig": false, "md5_digest": "33bdf5b0dd404782b2c7273978236dce", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 356080, "upload_time": "2016-01-20T00:42:16", "url": "https://files.pythonhosted.org/packages/de/30/9d83a7bfc1b2f462556559a81e32c401304751269f2bc86d0e7b54cbc4cf/pythonz_bd-1.11.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2666762cb363974bd2d6e4938c2b9cc3", "sha256": "6b5e0767d58c3992fc609456e7de61b2e99c1a8e57c594b58d4422f36421053c" }, "downloads": -1, "filename": "pythonz_bd-1.11.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2666762cb363974bd2d6e4938c2b9cc3", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 116772, "upload_time": "2016-01-20T00:42:55", "url": "https://files.pythonhosted.org/packages/61/7e/a2d32e66a387021fe7d8329ae692dad0b1cfa0d17c851370e606da4222f7/pythonz_bd-1.11.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7080a6f4684e613c426d75f6af4097e0", "sha256": "f98db958106fcf847fc4e22b0caab3d554270eea4b2a0799e48c795f7d7f27fb" }, "downloads": -1, "filename": "pythonz-bd-1.11.2.tar.gz", "has_sig": false, "md5_digest": "7080a6f4684e613c426d75f6af4097e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82252, "upload_time": "2016-01-20T00:41:50", "url": "https://files.pythonhosted.org/packages/cb/e2/9ee252d6b105995b6c08e958f06466f135cc10cefe48b23c083b0049c0e6/pythonz-bd-1.11.2.tar.gz" } ], "1.11.3": [ { "comment_text": "", "digests": { "md5": "0505267e4fb3469b7adf05aa5de9fa7a", "sha256": "6d42894580d1f2d9031f81b2b767a9e996b7cbc4e095a8d534fd3be601cc0ff3" }, "downloads": -1, "filename": "pythonz_bd-1.11.3-py3-none-any.whl", "has_sig": false, "md5_digest": "0505267e4fb3469b7adf05aa5de9fa7a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 117933, "upload_time": "2017-01-19T02:06:02", "url": "https://files.pythonhosted.org/packages/23/c6/690edc9b39bfd9f8e901f4474f573f20ff64d1f4f2cfbbdd8def09d4e659/pythonz_bd-1.11.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc2922bc1fbb97d2060dbaada8bf1e74", "sha256": "116e35c2661a702ed860e4d693297033f000a47844e15c72f151ea50276b3f50" }, "downloads": -1, "filename": "pythonz-bd-1.11.3.tar.gz", "has_sig": false, "md5_digest": "bc2922bc1fbb97d2060dbaada8bf1e74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86035, "upload_time": "2017-01-19T02:06:00", "url": "https://files.pythonhosted.org/packages/41/66/477eef589811b02559a7dc530a599eb5315938182a5437ae34f25ded7403/pythonz-bd-1.11.3.tar.gz" } ], "1.11.4": [ { "comment_text": "", "digests": { "md5": "1b231ce9c06114d64b91c91117d3262c", "sha256": "6dacd9aed6018014c75acfa9c994d755715c73bc786bdc6c6186d3cf184bacf0" }, "downloads": -1, "filename": "pythonz_bd-1.11.4-py3-none-any.whl", "has_sig": false, "md5_digest": "1b231ce9c06114d64b91c91117d3262c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 117935, "upload_time": "2017-02-01T09:26:08", "url": "https://files.pythonhosted.org/packages/fb/42/6b4782cb4b7c5a85d78f0248a448a0706aa79e8b21f7bd4361d23091fcb3/pythonz_bd-1.11.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41a29e2d798191772f6a42485a8530b9", "sha256": "30fa48c5b542e1ebfca167f10699b149768dd18a90185d98b8a766636b6343b9" }, "downloads": -1, "filename": "pythonz-bd-1.11.4.tar.gz", "has_sig": false, "md5_digest": "41a29e2d798191772f6a42485a8530b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86065, "upload_time": "2017-02-01T09:26:02", "url": "https://files.pythonhosted.org/packages/5a/d5/6bf8469ab6f860bfcbbddffbd83ee6087d63aad7cf44592a27b522c112df/pythonz-bd-1.11.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1b231ce9c06114d64b91c91117d3262c", "sha256": "6dacd9aed6018014c75acfa9c994d755715c73bc786bdc6c6186d3cf184bacf0" }, "downloads": -1, "filename": "pythonz_bd-1.11.4-py3-none-any.whl", "has_sig": false, "md5_digest": "1b231ce9c06114d64b91c91117d3262c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 117935, "upload_time": "2017-02-01T09:26:08", "url": "https://files.pythonhosted.org/packages/fb/42/6b4782cb4b7c5a85d78f0248a448a0706aa79e8b21f7bd4361d23091fcb3/pythonz_bd-1.11.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "41a29e2d798191772f6a42485a8530b9", "sha256": "30fa48c5b542e1ebfca167f10699b149768dd18a90185d98b8a766636b6343b9" }, "downloads": -1, "filename": "pythonz-bd-1.11.4.tar.gz", "has_sig": false, "md5_digest": "41a29e2d798191772f6a42485a8530b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86065, "upload_time": "2017-02-01T09:26:02", "url": "https://files.pythonhosted.org/packages/5a/d5/6bf8469ab6f860bfcbbddffbd83ee6087d63aad7cf44592a27b522c112df/pythonz-bd-1.11.4.tar.gz" } ] }