Quantcast

Jump to content


Photo

[Neopets Programs] Neocodex Program Manager (33 programs in one)


  • This topic is locked This topic is locked
889 replies to this topic

#676 Concido

Concido
  • 10 posts

Posted 31 December 2012 - 10:10 AM

Did you try installing python?


Just recently tried installing it from here.
Python 3.3.0 Windows x86 MSI Installer (Windows binary -- does not include source)
Still no success

#677 Waser Lave

Waser Lave

  • 25516 posts


Users Awards

Posted 31 December 2012 - 10:14 AM

Try uninstalling Python and installing 2.7, not 3.3.

#678 ShadowLink64

ShadowLink64
  • 16735 posts


Users Awards

Posted 31 December 2012 - 10:14 AM

If you can get TeamViewer, or some other Remote Desktop utility working, I could always try having a look to see what is wrong. :p Otherwise, I have no idea why it wouldn't be starting up. :/

Try Python 2.7 first though.

#679 Concido

Concido
  • 10 posts

Posted 31 December 2012 - 11:04 AM

If you can get TeamViewer, or some other Remote Desktop utility working, I could always try having a look to see what is wrong. :p Otherwise, I have no idea why it wouldn't be starting up. :/

Try Python 2.7 first though.


Nothing works and I just got a teamviewer account.

#680 ShadowLink64

ShadowLink64
  • 16735 posts


Users Awards

Posted 31 December 2012 - 11:18 AM

Do you have the ID and password? If so, I can have a quick peak at what is going on. I'll be able to see your screen and everything though, so keep that in mind before we do this. :p

#681 Concido

Concido
  • 10 posts

Posted 31 December 2012 - 11:22 AM

Do you have the ID and password? If so, I can have a quick peak at what is going on. I'll be able to see your screen and everything though, so keep that in mind before we do this. :p


Yeah, I private messaged already.

Edited by Waser Lave, 31 December 2012 - 11:35 AM.
Probably not the best idea to post that in public


#682 ShadowLink64

ShadowLink64
  • 16735 posts


Users Awards

Posted 31 December 2012 - 01:43 PM

So, I have no idea what is going on. I think it might be a 32-bit vs. 64-bit dependency problem because of this message:

>>> import socket Traceback (most recent call last): File "<console>", line 1, in <module> File "D:\p\Python27\Lib\socket.py", line 47, in <module> import _socket ImportError: DLL load failed: The specified module could not be found.

I'll keep looking into it.

#683 Waser Lave

Waser Lave

  • 25516 posts


Users Awards

Posted 31 December 2012 - 01:47 PM

http://sourceforge.n...6/topic/4581184

It's because it's trying to load the _socket.pyd module from your existing Python installation. In order to avoid the MS VC Runtime dependency, the Python bundled with Python Script is compiled without the dependency, which unfortunately means that all the modules have to compiled that same way too. There are two options: 1) replace the python27.dll in the Notepad++ directory with your "official" python27.dll, or 2) alter the sys.path list to exclude the paths that relate to your existing installation. There's a script in this forum here - https://sourceforge....6/topic/4438530 - that fixes this exact issue. A future version of Python Script will prepend the N++ specific paths, so that we don't have this problem, but it's not there yet. Cheers, Dave.


Does that help at all?

#684 Concido

Concido
  • 10 posts

Posted 31 December 2012 - 01:49 PM

So, I have no idea what is going on. I think it might be a 32-bit vs. 64-bit dependency problem because of this message:

>>> import socket Traceback (most recent call last): File "<console>", line 1, in <module> File "D:\p\Python27\Lib\socket.py", line 47, in <module> import _socket ImportError: DLL load failed: The specified module could not be found.

I'll keep looking into it.


Hmm, I see. It seems the problem is really specific to my computer though... Don't see why my windows 8 computer wasn't affected (originally windows 7) but my desktop doesn't work with it. I guess should of used Dependency Walker 2.2 earlier..

#685 ShadowLink64

ShadowLink64
  • 16735 posts


Users Awards

Posted 31 December 2012 - 01:51 PM

Hmm, I see. It seems the problem is really specific to my computer though... Don't see why my windows 8 computer wasn't affected (originally windows 7) but my desktop doesn't work with it. I guess should of used Dependency Walker 2.2 earlier..

Oh, yes. I just used dependency walker on _socket.pyd (that file we were having trouble with). Here's what it says:

Posted Image

#686 Waser Lave

Waser Lave

  • 25516 posts


Users Awards

Posted 31 December 2012 - 01:54 PM

Have you checked to make sure python is actually installed in that place it said in the error?

#687 ShadowLink64

ShadowLink64
  • 16735 posts


Users Awards

Posted 31 December 2012 - 01:55 PM

Have you checked to make sure python is actually installed in that place it said in the error?

I tried a while ton of things, including what you posted up. :p python27.dll is not the problem I don't think.

#688 Waser Lave

Waser Lave

  • 25516 posts


Users Awards

Posted 31 December 2012 - 01:58 PM

So where is his python actually installed to on his computer?

#689 ShadowLink64

ShadowLink64
  • 16735 posts


Users Awards

Posted 31 December 2012 - 01:59 PM

So where is his python actually installed to on his computer?


c:\Python27

Same place as usual. :p

(That's not the exact error message I was seeing, I just took it from some website because I had already disconnected. Theirs said c:\Python27)

#690 Waser Lave

Waser Lave

  • 25516 posts


Users Awards

Posted 31 December 2012 - 02:01 PM

You confused me with the D:\p\Python27\Lib\socket.py. :p

Have you checked their PATH to make sure that's pointing python to the right place too? :/

#691 ShadowLink64

ShadowLink64
  • 16735 posts


Users Awards

Posted 31 December 2012 - 02:02 PM

You confused me with the D:\p\Python27\Lib\socket.py. :p

Have you checked their PATH to make sure that's pointing python to the right place too? :/

Yeah. Even tried appending various directories to the path before trying to run the ProgramManager pyc directly. Nothing. -__-

It insisted a DLL file was missing the entire time. That's why I tried installing the MSVC90 redistributable, and some other things. Still nothing.

#692 Waser Lave

Waser Lave

  • 25516 posts


Users Awards

Posted 31 December 2012 - 02:05 PM

I have no idea then. :/ It smells like their python installation is just corrupted somehow but if it's installed in the right place and their PATH settings are fine then it's pretty weird...

#693 Concido

Concido
  • 10 posts

Posted 31 December 2012 - 02:11 PM

Just a question, but what does Python have to do with this? I don't even have Python on Windows 8 but it runs perfectly fine?

#694 ShadowLink64

ShadowLink64
  • 16735 posts


Users Awards

Posted 31 December 2012 - 02:19 PM

Just a question, but what does Python have to do with this? I don't even have Python on Windows 8 but it runs perfectly fine?

We built our application and packaged it up with Python.

You shouldn't actually need Python installed because it's all packaged in there already. We just figured that if it was missing something, the Python installation would definitely have it. :p

#695 Concido

Concido
  • 10 posts

Posted 31 December 2012 - 02:21 PM

We built our application and packaged it up with Python.

You shouldn't actually need Python installed because it's all packaged in there already. We just figured that if it was missing something, the Python installation would definitely have it. :p


Looks like changing the operating system had no effect, just upgraded.
Guessing its settings-specific or an installation of multiple conflicting libraries or something.

Edited by Concido, 31 December 2012 - 02:22 PM.


#696 Waser Lave

Waser Lave

  • 25516 posts


Users Awards

Posted 31 December 2012 - 02:45 PM

It's a new one on me anyway, I've never seen it before. :p

#697 beach3boy

beach3boy
  • 514 posts

Posted 19 January 2013 - 07:28 AM

So I'm running this program on a Mac and love all the features, but one little thing that seems like it could possibly be a simple fix either on my end or the coding end would have to do with the user agent. I like to use a custom user agent, and the program manager remembers my user agent each time I open the program, but the check next to the box always goes away after I close/reopen the program. This is rather annoying because when I open a program I have to close the login box, open the web settings and check the custom user agent box again, then open the login and login (in order for my login and program use to be under the same user agent). If it's not a quick fix then I can continue to do this it's not that big of a deal, or if I'm thinking about this the wrong way let me know. I'm not 100% internet browser saavy. Any advice greatly appreciated.

#698 milk2

milk2
  • 2 posts

Posted 27 January 2013 - 12:12 PM

Thanks :rolleyes:



#699 jeff993

jeff993
  • 2 posts

Posted 31 January 2013 - 11:10 PM

Thank you !



#700 GamzeeMakara

GamzeeMakara
  • 11 posts

Posted 07 February 2013 - 09:36 AM

How Can I download ad




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users