@@ -214,13 +214,23 @@ Troubleshooting (Ubuntu12.04LTS or higher version)
214
214
Sometimes you may get error like "Checking for ability to link against xml2...no " while installing LibXML then
215
215
use this command
216
216
sudo apt-get install zlib1g-dev
217
+
218
+ 2. For error related to Net::SSH2
219
+ Sometimes you may get error like,
220
+ fatal error: openssl/crypto.h: No such file or directory
221
+ #include <openssl/crypto.h>
222
+ ^
223
+ compilation terminated.
224
+ make: *** [SSH2.o] Error 1
225
+ then use then command:
226
+ sudo apt-get install libssl-dev
217
227
218
- 2 . For YAML related Errors
228
+ 3 . For YAML related Errors
219
229
Sometimes you may get that yaml is not installed then run following commands:
220
230
apt-get install libyaml-appconfig-perl
221
231
apt-get install libconfig-yaml-perl
222
232
223
- 3 . For cpan related errors:
233
+ 4 . For cpan related errors:
224
234
While installing some files using cpan, for example "cpan File::Which" you may get error like checksum mismatch
225
235
for distribution, then try installing that package using "cpanm"
226
236
First install cpanm in your system by:
@@ -232,4 +242,5 @@ Troubleshooting (Ubuntu12.04LTS or higher version)
232
242
unmet dependency then first install that package using cpan / cpanm and then install your desired package.
233
243
you can also try installing by force :
234
244
apt-get -f install
235
-
245
+
246
+
0 commit comments