You are here

Python portable

22 posts / 0 new
Last post
Bobvark
Offline
Last seen: 11 years 5 months ago
Joined: 2006-01-11 11:11
Python portable

Is Python portable? compiler? Someone else asked for c++, What all programming languages are portable?

Deuce
Offline
Last seen: 13 years 6 months ago
Developer
Joined: 2005-12-24 16:32
One I made is...

the NSIS install. I made it portable, by just copying the files off to my usb drive after install, and then uninstalling. Also I had to create a launch batch file for the compilier itself, as it stores settings in the HKEY_LOCAL_MACHINE (Just windows position, but I am a bit touchy), to keep the settings out of the registry. I will be replacing that batch with my Registry Rapper program, once the HKLM registry support gets added.

***********************************
Deuce   {The Core}
"Portable Software: Just the beginning..."

Deuce
Portable Software: Just the beginning.

B BY KB MB GB TB
Offline
Last seen: 16 years 11 months ago
Joined: 2006-03-10 17:45
HEALP

How the hell do you make a Executable batch file
?????????????????????????

Ryan McCue
Ryan McCue's picture
Offline
Last seen: 14 years 6 months ago
Joined: 2006-01-06 21:27
What?

You want to change a .bat into a .exe?
We use NSIS which is a programming language.
----
R McCue

"If you're not part of the solution, you're part of the precipitate."

B BY KB MB GB TB
Offline
Last seen: 16 years 11 months ago
Joined: 2006-03-10 17:45
thats okey

i figured out how to do it without your healp...... No offense.

Steve Lamerton
Steve Lamerton's picture
Offline
Last seen: 10 years 6 months ago
Developer
Joined: 2005-12-10 15:22
Out of interest cmlp13 why

Out of interest cmlp13 why are you acting like you are better than all us other devs out here. Just wondering.

Yours

Steve Lamerton

Developer Profile Sync & PortaLog

B BY KB MB GB TB
Offline
Last seen: 16 years 11 months ago
Joined: 2006-03-10 17:45
Huh?

What the hell are you talking about?

Steve Lamerton
Steve Lamerton's picture
Offline
Last seen: 10 years 6 months ago
Developer
Joined: 2005-12-10 15:22
It's just the way you keep

It's just the way you keep asking every one to e-mail you for a certain program, like you dont want the community to know about it. And yes I am a developer see www.portasoft.org

Yours

Steve Lamerton

Developer Profile Sync & PortaLog

Ryushi
Offline
Last seen: 15 years 7 months ago
Joined: 2005-12-09 09:30
He seems to be a little bit self-pleasing

Hi Steve,

I have asked him something similar here and got a self-pleasing answer - "it is to complicated, and i can send you an atachment of the program" Sad
In an other thread he stoop to describe his obscure modifications.

Cya Ryushi

oyster
Offline
Last seen: 15 years 8 months ago
Joined: 2006-04-28 01:52
you may check

you may check http://www.voidspace.org.uk/python/movpy/
however, it is not a freeware anymore.
and I believe, most of the programming languages can be portable. So far as I know, http://www.realbasic.com, http://www.freebasic.net, http://www.delorie.com/djgpp/

oyster
Offline
Last seen: 15 years 8 months ago
Joined: 2006-04-28 01:52
app request: portable python

As I have said in the previous post, there is a portable python. But it is not free, and the used to be free one does not supports sourec file with Chinese characters( even in the comment), and I think it does not support characters other than english ones. So could anyone coin a new, free python launcher?
thanx

tanisthalon
tanisthalon's picture
Offline
Last seen: 3 years 3 months ago
Developer
Joined: 2006-02-11 08:02
Ruby

I read a small article on Ruby. Sounds interesting. Although I don't know too much about such things. How does Ruby compare as a programming language? Next is it capable of been portable?
I would like to start looking at learning something like this for a few ideas I have.

Dell XPS M1530 Laptop
Intel Core 2 Duo T9300 2.5GHz
4GB Ram
256MB GeForce 8600M GT

oyster
Offline
Last seen: 15 years 8 months ago
Joined: 2006-04-28 01:52
If you only want to learn a

If you only want to learn a script languge and/or to resolve some prblem during your work, you may choose python/lua/ruby randomly, I think they are all easy. But please keep away from perl Acute
Howewer if you have such app that embeds script language, you do not have much choice. As for me, I use www.blender.org( BTW, it is a portalbe 3D app on win/linux/mac), and it use python only currently, and I love python than ruby.

koldfyre
Offline
Last seen: 17 years 4 weeks ago
Joined: 2006-10-28 02:02
Online Ruby Interpreter & Tutorial

There is an online ruby interpreter and tutorial (using that online ruby interpreter )
Here: http://tryruby.hobix.com/
However, I am still looking for an online or portable python. If anyone finds one (besides the MovablePython or MovableInterpreter - someone already provided links - then please email me at koldfyre@gmail.com)
Ed

a_name
Offline
Last seen: 17 years 4 months ago
Joined: 2006-11-04 14:15
Portable Python by copying Python files

You can just copy your entire pyhton installation directory (like C:\Programs\Python25) on your usb stick. You will also need python25.dll and
msvcr71.dll in the same directory as python.exe. You'll usually find these dll-files in C:\WINNT\System32.

You can run idle by drag & drop idle.pyw (from Python25\Lib\idlelib) onto pythonw.exe (or python.exe if you need a console window for error messages Wink ).
It goes a little bit more easly if you put a text file in the same directory as python.exe having the folling content:
@echo off
start pythonw.exe Lib/idlelib/idle.pyw %1 %2 %3 %4 %5 %6 %7 %8 %9
Call the file something like idle.bat and you'll be fine.

I used Python25 on Win2k.
Good Luck Smile

tanisthalon
tanisthalon's picture
Offline
Last seen: 3 years 3 months ago
Developer
Joined: 2006-02-11 08:02
Python Portable 2.4.4 & 2.5

I had done a portable version of 2.4.3 (changed it to 2.4.4 with the latest update) and 2.5, but never took them any further. I recently gave them to Ryan to have a play with.

If you do not know how to make the bat file mentioned above, there already is one in the lib/idlelib folder under idle.bat :).

I will have a look at releasing them both as beta's eventually.

___

tanisthalon
Visualize the possibilities!

Dell XPS M1530 Laptop
Intel Core 2 Duo T9300 2.5GHz
4GB Ram
256MB GeForce 8600M GT

Ryan McCue
Ryan McCue's picture
Offline
Last seen: 14 years 6 months ago
Joined: 2006-01-06 21:27
Uh oh

I recently gave them to Ryan to have a play with.
Oops. I haven't checked my emails recently Biggrin I'll check now.
----
Ryan McCue
Cube Games
People who didn't need people needed people around to know that they were
the kind of people who didn't need people.
(Maskerade)

"If you're not part of the solution, you're part of the precipitate."

pmguerre
Offline
Last seen: 17 years 3 months ago
Joined: 2006-12-30 10:14
Python Portable 2.4.4

Hi.

I've been searching for a portable python, and came across this thread. I've checked your homepage, but there is no link to download the files from there (yea, I know they are "in development"). Is it possible to send me the 2.4.4 Python Portable for a test?

My main reason is that I need to setup a USB stick with a webserver and mod_python, so I need a python interpreter...

thanks

tanisthalon
tanisthalon's picture
Offline
Last seen: 3 years 3 months ago
Developer
Joined: 2006-02-11 08:02
Feedback

I haven't taken them any further since I sent them to Ryan. I presume he is busy with life and such. They are a bit away from a beta post. But if you wish to test it then by all means get in touch via my website which as you already know, is linked in my profile.

Please no more posts from here on regarding sending of files etc. It clutters the threads etc. I will happily oblige this once.

___

Visualize the possibilities!

Dell XPS M1530 Laptop
Intel Core 2 Duo T9300 2.5GHz
4GB Ram
256MB GeForce 8600M GT

Ryan McCue
Ryan McCue's picture
Offline
Last seen: 14 years 6 months ago
Joined: 2006-01-06 21:27
What me, Life?

Seriously, I've been a bit busy with PHP scripts like Lilina News Aggregator and building it's new website.
Can you send the links again please, as I seem to have lost the email.
----
Ryan McCue
Santa: Ho Ho Ho!
Kim: Yes, thank you Santa, I am.
(Kath and Kim)

"If you're not part of the solution, you're part of the precipitate."

perica
Offline
Last seen: 14 years 1 month ago
Joined: 2006-10-25 05:56
PortablePython.com

Hi there,

yes portable python is availabile and you can find it here :
PortablePython.com

Ryan McCue
Ryan McCue's picture
Offline
Last seen: 14 years 6 months ago
Joined: 2006-01-06 21:27
Wow

I just got rid of that design Wink
----
Ryan McCue
Person 1: Oh my god. You will never believe what just happened.
Person 2: What?
Person 1: I can't remember, I've forgotten.

"If you're not part of the solution, you're part of the precipitate."

Topic locked