PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Wednesday the 28th of September, 2016

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[15:56:56] <Siecje> Does anyone know how to get cx_Freeze to bundle data files from a package (site-packages).
[15:57:20] <Siecje> I'm trying to include raven which contians a cacert.pem file that is not being included.
[17:15:23] <agronholm> is cx_freeze still being developed?
[17:27:38] <Siecje> yes? https://bitbucket.org/anthony_tuininga/cx_freeze/commits/all
[18:32:27] <agronholm> Siecje: just wondering since the last release is still from almost 2 years ago
[18:34:06] <Siecje> curious I have version 5.0
[18:34:16] <Siecje> which is not on PyPI?
[18:35:39] <agronholm> https://pypi.org/project/cx-Freeze-win
[18:36:31] <Siecje> If I do pip freeze I have cx-Freeze==5.0
[18:36:37] <Siecje> I do not have that one
[18:36:49] <agronholm> you installed directly from github then?
[18:37:23] <Siecje> No? Pretty sure I didn't
[18:38:10] <agronholm> how then? neither cheeseshop or warehouse have cx_freeze 5.0
[18:39:32] <Siecje> same datastore for both
[18:39:45] <agronholm> yes, but the indexes are not always in sync :)
[18:45:05] <Siecje> maybe I should just install the -win one?
[18:45:15] <agronholm> have you tried pyinstaller?
[18:45:34] <Siecje> Couldn't get it to work.
[18:45:47] <agronholm> what was the problem?
[19:14:40] <adavenport> does anyone know how to make packages appear on pip
[19:15:00] <adavenport> i just uploaded and its not available to download
[19:15:08] <adavenport> pip search returns nothing
[19:15:20] <ngoldbaum> adavenport: what package? "pip search" is broken IIRC
[19:15:35] <adavenport> mpcorbget
[19:15:43] <adavenport> pip install also returns nothing
[19:15:59] <ngoldbaum> and you uploaded without any errors?
[19:17:05] <ngoldbaum> comprehensive instructions here: https://packaging.python.org/distributing/#uploading-your-project-to-pypi
[19:17:12] <adavenport> yeah
[19:17:19] <dstufft> what's the name of the project
[19:17:27] <adavenport> i uploaded but im unable to download the package
[19:17:36] <adavenport> mpcorbget
[19:18:31] <dstufft> it looks like you ran register but you didn't upload the files
[19:19:30] <adavenport> im in the middle of re uploading rn
[19:19:34] <adavenport> hold on
[19:19:39] <adavenport> should be up
[19:20:02] <ngoldbaum> and there it is
[19:20:08] <ngoldbaum> https://pypi.python.org/pypi/mpcorbget
[19:21:36] <ngoldbaum> adavenport: do you have feelings about astropy vs pyephem?
[19:21:46] <adavenport> i know its on the website but pip install returns nothing
[19:21:55] <adavenport> astropy is a savior
[19:22:07] <adavenport> but pyephem was handy for this project
[19:22:39] <adavenport> mainly use astropy for fits image processing and pyephem for coordinate stuff
[19:22:39] <ngoldbaum> adavenport: are you installing with python3?
[19:22:45] <adavenport> yep
[19:22:53] <ngoldbaum> python3.5 -m pip install mpcorbget works over here
[19:23:34] <adavenport> shouldnt my conda environment be downloading with python 3 by default
[19:23:36] <ngoldbaum> "pip" might be python2's pip depending on how you have your system setup
[19:23:58] <ngoldbaum> if it's a python3 conda environment
[19:24:05] <ngoldbaum> i think so yeah, but don't normally use conda
[19:27:44] <adavenport> hmm
[19:27:54] <adavenport> im going to create a new environment and check
[19:29:10] <ngoldbaum> "which pip" might also be helpful, if pip is coming from another python install
[19:29:41] <ngoldbaum> this is why people suggest these days to use "python3 -m module", that way there's no ambiguity about which python you're using
[19:32:28] <Siecje1> agronholm: I can't even install from the Bitbucket repo. Very odd. I must have downloaded as a zip and then used pip
[19:35:56] <Siecje1> agronholm: When I use pyinsaller to build https://github.com/siecje/qml-testing I get an error that Failed to execute script pyi_rth_qt5plugins https://dpaste.de/nVem
[19:40:38] <adavenport> thats so weird, pip was calling a version of itself from outside of the conda environment
[19:41:02] <ngoldbaum> adavenport: that can easily happen depending on how your PATH is defined
[19:41:25] <ngoldbaum> adavenport: the most common issue i see with people's python installs is that they have more than one python install
[19:41:30] <ngoldbaum> and they're stepping on each other
[19:46:04] <adavenport> i think the path that conda env was corrupted
[19:46:34] <adavenport> condas usually good at avoiding those issues
[20:10:42] <Vyrus001> is there a simple howto on installing pip for the python instance IDA installs on windows?