PERL MODULE MANAGER - perlmod Version 1.1.0
To Install perl modules and all dependent modules,Uninstall perl modules,List all perl modules in system,Search for a perl module in cpan.org and system,List all files of a perl module and Details of a perl module.
---------
Features:
---------
a) We can install any number of modules in a single command. Also all dependent modules of these modules insta
lled simultaneously.
b) Uninstall modules from the system
c) Print all files related to a module
d) List all perl modules installed in the system
I installed the 32-bit ActivePerl and the 32-bit PDK 8.0.1 on my openSUSE 11.1 64-bit Linux system. Then I opened up Komodo and built a project. There is one file in the project, the "Hello, World!" sample PerlApp script.
I can build it for the native Linux system and it runs just fine. But I can't get PerlApp to build a MacOS X version. When I do "Make Executable" in the PerlApp GUI, I get this:
PerlApp Command Line:
perlapp --norunlib --target macosx-universal-32 --exe "PerlApp Sample-1-macosx-universal-32" --perl /opt/ActivePerl-5.10/bin/perl-static "PerlApp Sample-1.pl"
Hi:
I'm pretty new to python and I've just downloaded and am trying out Komodo Edit 5, but I'm running into what I think is a newbiesh problem.
I have a komodo project based on the django tutorial but I get code completion errors in my models.py file whenever I try to do code completion (ctrl-j). For example, I have the following code:
from django.db import models
import datetime
class Poll(models.Model):
question = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
If I try to add an additional field after pub_date I get:
Hi
Opensuse11.0
Very often when I do some splitview and move files back and forth between the folders it crashes, crashreporter wont start.
Am I missing a softlink to libgconf-2.so.4 ?
SciMoz::Notify 2008 used when closed! : : SciMoz::Notify 2008 used when closed! /opt/komodo-ide51/lib/mozilla/crashreporter: error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory
Do komodo installs its own gconf2 ?
% find /opt/komodo-ide51 -name "*gconf*"
Hi there...
I have Komodo 4.2 and I buy an actualization.
I'm trying to install it but I have problems.
When I run the installer I got this message:
mantaraya:/home/mantaraya/Komodo-IDE-5.1.1-27706-linux-libcpp6-x86_64 # ./install.sh
./INSTALLDIR/lib/python/bin/python: line 4: 12811 Excepción de coma flotante LD_LIBRARY_PATH=$libdir:$LD_LIBRARY_PATH $bindir/python2.6 "$@"
mantaraya:/home/mantaraya/Komodo-IDE-5.1.1-27706-linux-libcpp6-x86_64 #
The distribution is Suse Enterprise Linux 10.2 x86_64
Thanks a lot.
I see a (rather annoying) vertical line on my screen at about col 60 within the editing window.
It looks as though it's intentional - although it doesn't appear in the Windows version. If I collapse the Code Browser tab the Vertical line will move left with the code in the editing window.
The attached image clearly shows the line - which I have surrounded with a red rectangle.
Thanks
NJH
Hi,
I am setting up remote debugging for PHP 5 in Komoto, and am getting a "invalid ELF header" error when adding the following lines to my php.ini file:
; xdebug config for Linux and Mac OS X
zend_extension=/opt/lampp/htdocs/xdebug/xdebug.so
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_host=192.168.1.150
xdebug.remote_port=9000
xdebug.idekey=1
My system:
* XAMPP for Linux 1.6.4 (PHP 5.2.4, Apache 2.2.6, etc.)
* Suse 10 Linux (the server)
Hi
I usually leave my komodo IDE 5.03 open when I leave the office.
I have around 6-7 open folders with most files using svn.
What I find irritating is that for the longer komodo stays open, the more memory it consumes. This komodo has stayed on for ~20hours. The computer where
extremely slow when I logged on, because it probably needs to move around memory.
In most of the cases I find komodo being dead when I arrive in the morning.
Tasks: 199 total, 1 running, 196 sleeping, 1 stopped, 1 zombie
Hi,
i downloaded the 8.6 beta (ActiveTcl8.6.0.0b1.289006-linux-ix86-threaded.tar.gz). While running some regression tests i noticed that my code using tcllib's struct::graph was failing.
This was due to [package require struct::graph] loading version 1.2.1 of struct::graph. In ActiveTcl-8.5, [package require struct::graph] returned 2.3.
For ActiveTcl-8.5 probably only version 2.3 of the package was installed.
It's fine to have both versions installed, but i would expect [package require graph::struct] to load the highest available version.
Hey all:
Relearning tcl so bear with me.
I'm having issues with the split command. I'm sure its easy for someone other than I.
It's a filename that I'm splitting the extension and ignoring the first part of the filename before the "." So there are 100s of files wxyz.JJ_HHHHHH and I just getting the JJ and HHHHH out to use. The wxyz is always constant - Already filtered out with glob.
(In a loop for each file)
set short [split $filel($count) "wxyz._" {} ]
Thinking I'll get >> JJ HHHHHH
then I can do a lassign $short($count) varJJ varHHHHHH (commented out currently)