Otrs (3.2.10) )installation on Centos - otrs

I'm trying to install otrs-3.2.10-02 on centos 6 using rpm package. But it shows following error.
error: failed dependencies :
perl-core module is required by otrs-3.2.10-02.noarch
cronie module is required by otrs-3.2.10-02.noarch
I tried to get these missing modules but couldn't get them installed.
Can anybody help me to get this working ?
Thanks in advance.

What command did you use to install OTRS? If you use yum the dependencies should be taken care of automatically.
Please check
the chapter about installing on CentOS in the OTRS manual

Related

Drupal composer install: Your requirements could not be resolved to an installable set of packages

I am using drupal 8 and I am trying to install the Search API Solr module each time I run the command.
composer require drupal/search_api_solr
I am getting this error
Your requirements could not be resolved to an installable set of
packages.
Here is the screenshot of the error I am getting. Could anyone please help me
Which Drupal Core version do you use ?
It could be related to the symfony/event-dispatcher library.
Can you try composer require symfony/event-dispatcher:"4.3.4 as 3.4.99" drupal/search_api_solr ?
More infos here : https://www.drupal.org/project/drupal/issues/2876675#comment-13272878
Looks like the module you are trying to install needs some additional package.

Error with H20 - Python init(): Server Error

This is a totally newbie question to see if I am missing something key (like there is more to install?).
After installing H20 (python 2.7) on a 9 node Hadoop / Spark cluster
using pip install of the whl file (h2o-3.10.4.8-py2.py3-none-any.whl) (which says it installed correctly).....
I can import h2o successfully.
But, when I run h2o.init() then I get:
"Checking whether there is an H20 instance running at http://localhost:54321. connected."
But then an error is thrown:
H2oServerError: HTTP 500 Server Error: u'Error: 500'
Should I be able to run H20 by simply pip installing that whl or is there more? The documentation seems outdated and there are lots of different versions found online. Anyone have any experience with this?
It's most likely that you got this problem solved, but maybe someone else may benefit. Use the install in Python Tab on the following website : http://h2o-release.s3.amazonaws.com/h2o/rel-tutte/2/index.html.

How to install MongoDB C++ driver on ubuntu?

I'm trying to install MongoDB C++ driver in Ubuntu and I just tried to follow the instructions on MongoDB's site.
I get an error during the make and sudo make steps. What can I do?
I leave the link for downloading the driver:
Visit https://github.com/mongodb/mongo-cxx-driver/tree/master
In this link you find a tutorial on how to install the driver called the wikki See page

Configure Web2Py to use Anaconda Python

I am new to Web2Py and Python stack. I need to use a module in my Web2Py application which uses "gensim" and "nltk" libraries. I tried installing these into my Python 2.7 on a Windows 7 environment but came across several errors due to some issues with "numpy" and "scipy" installations on Windows 7. Then I ended up resolving those errors by uninstalling Python 2.7 and instead installing Anaconda Python which successfully installed the required "gensim" and "nltk" libraries.
So, at this stage I am able to see all these "gensim" and "nltk" libraries resolving properly without any error in "Spyder" and "PyCharm". However, when I run my application in Web2Py, it still complains about "gensim" and gives this error: <type 'exceptions.ImportError'> No module named gensim
My guess is if I can configure Web2Py to use the Anaconda Python then this issue would be resolved.
I need to know if it's possible to configure Web2Py to use Anaconda Python and if it is then how do I do that?
Otherwise, if someone knows of some other way resolve that "gensim" error in Web2Py kindly share your thoughts.
All your help would be highly appreciated.
The Windows binary includes it's own Python interpreter and will therefore not see any packages you have in your local Python installation.
If you already have Python installed, you should instead run web2py from source.

Problems installing django-1.0.2 on Windows XP

I'm a Windows user. I tried to install django-1.0.2 final through the command prompt and it kept giving me an error in line 70:
The error occured where u"SVN"... It couldn't get past that line.
What to do in order to be able to install django-1.0.2?
You do not have SubVersion installed on your machine. You are trying to synchronize from the current production stream via SubVersion, which is a source control system, which you do not have installed.
Easiest solution - download the latest official version per the instructions at http://www.djangoproject.com/download/
Please install a client for the Subversion Version Control System. Since you are on Windows, you can also use TortoiseSVN which is an easy to use SVN client for Windows.
Alternately, you can download the tarball of Django 1.0.2 directly.
And please don't SHOUT on Internet forums. We hear you :)
If I recall correctly, installing TortoiseSVN won't help you there cause Django's code tries to use SVN's command line version.
Install a command-line SVN like:
Slik SVN
CollabNet SVN Command line
What version of python are you using? I had the same error when installing on top of python 3.2 instead of 2.7. Django only works with 2.7.
http://docs.djangoproject.com/en/1.2/faq/install/#can-i-use-django-with-python-3