eb54
![]() |
|
|
|
|
|||||||
| Installation and Maintenance of FreeBSD Ports or Packages Installing and maintaining the FreeBSD Ports Collection or FreeBSD Packages (i.e. third party software). |
![]() |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
i was just currious if there is an easy way to set up 2 versions of python on the same system.
I have a program that calls for python 2.5 and doesn't quite work as well with 2.6 edit: never mind, i just realized how silly this question was..i'll just use a jail |
|
#2
|
|||
|
|||
|
Yes, you can install both. I have Python 2.5 and 2.6 installed from ports. The default 'python' in /usr/local/bin is 2.6, and I have a 'python2.5' and 'python2.6' binary.
Code:
# ls -a | grep python python python-config python-shared python-shared-config python-shared2.5 python-shared2.5-config python-shared2.6 python-shared2.6-config python2.5 python2.5-config python2.6 python2.6-config
__________________
... |
|
#3
|
|||
|
|||
|
Quote:
for instance if i have 2.6 set as default and i have a program which needs 2.5 how do i make sure it uses 2.5 |
|
#4
|
||||
|
||||
|
Just edit your make.conf to which version you want to use, before you build the port.
|
|
#5
|
|||
|
|||
|
ok, so if it's not a port, i could just do this:
set make.conf to use python 2.5, install the program which needs 2.5, then set make.conf to use 2.6 and install everything else that needs python? |
|
#6
|
||||
|
||||
|
You can set port-specific settings in /etc/make.conf. Random example:
Code:
.if ${.CURDIR:M*/ports/devel/ccache}
NO_CCACHE=yes
.endif
__________________
FreeBSD Forums: Information for New Members | FreeBSD Forums Rules FreeBSD Resources: The FreeBSD Handbook | Manuals | FAQ | Wiki Before you post: How to ask questions the smart way If you must know .. So, what does an Administrator/Moderator do? ---> Do not PM me with FreeBSD questions. I do not work here. <--- |
|
#7
|
|||
|
|||
|
Edit the shebang?
__________________
... |
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [Solved] Jails and different versions of Freebsd | wonslung | General | 2 | October 4th, 2009 18:37 |
| [Solved] different versions of samba, not sure which to use. | wonslung | Installation and Maintenance of FreeBSD Ports or Packages | 2 | June 19th, 2009 06:35 |
| python threads on freebsd | frostbite | Installation and Maintenance of FreeBSD Ports or Packages | 1 | March 17th, 2009 08:50 |
| Python/GLib misbehaving | Togra | GNOME | 1 | March 1st, 2009 08:27 |
| Python Ports | dchappelle | Installation and Maintenance of FreeBSD Ports or Packages | 7 | January 10th, 2009 08:45 |