পৃষ্ঠাসমূহ

শুক্রবার, ২৪ ফেব্রুয়ারী, ২০১৭

Python package install problem solution IOError: [Errno 13] Permission denied:

When trying to install package using pip sometime this kinds of permission denied error occurs.

$ python -m pip install pylint

Output Error:
    self.move_wheel_files(self.source_dir, root=root)
  File "/home/rana/anaconda2/lib/python2.7/site-packages/pip/req/req_install.py", line 998, in move_wheel_files
    isolated=self.isolated,
  File "/home/rana/anaconda2/lib/python2.7/site-packages/pip/wheel.py", line 339, in move_wheel_files
    clobber(source, lib_dir, True)
  File "/home/rana/anaconda2/lib/python2.7/site-packages/pip/wheel.py", line 317, in clobber
    shutil.copyfile(srcfile, destfile)
  File "/home/rana/anaconda2/lib/python2.7/shutil.py", line 83, in copyfile
    with open(dst, 'wb') as fdst:
IOError: [Errno 13] Permission denied: '/home/rana/anaconda2/lib/python2.7/site-packages/backports.functools_lru_cache-1.3-py3
.5-nspkg.pth'


To solve this we need to specify --user after the previous command .

$python -m pip install pylint --user

This will solve the problem.

বৃহস্পতিবার, ২ ফেব্রুয়ারী, ২০১৭

"পারিভাষিক শব্দ" বাংলা পারিভাষিক শব্দের অ্যান্ড্রয়েড অ্যাপ


পারিভাষিক শব্দ
বাংলা থেকে ইংরেজি এবং ইংরেজী থেকে বাংলা পারিভাষিক শব্দ নিয়ে কামারঘরসফট এর নতুন মোবাইল অ্যাপ পারিভাষিক শব্দ । ইংরেজি থেকে বাংলা এবং বাংলা থেকে ইংরেজি শব্দ সার্চ করার সুবিধা রয়েছে । এসএসসি, এইচএসসি, পাবলিক পরীক্ষা, বিসিএস,ব্যাংকসহ বিভিন্ন চাকরির পরীক্ষায় অাসা পারিভাষিক শব্দের জন্য ব্যবহার করতে পারেন ।
পারিভাষিক শব্দের তালিকা
ডাউনলোড: 
প্লেস্টোরের লিংক: https://play.google.com/store/apps/details?id=com.ranamahmud.parivashikshobdho

 


Get it on Google Play

বৃহস্পতিবার, ২০ অক্টোবর, ২০১৬

Solution of problem installing R package in Ubuntu

Sometimes we want to install a package in R via using R console. But we may face problem if our R version is older . It may show errors like this one.
Warning in install.packages :
  package ‘ggplot2’ is not available (for R version 3.0.2)
This kind of package installation problem in Ubuntu linux can be fixed by installing the packaged version distributed by Ubuntu. We need to run  the following command in the terminal.


sudo apt-get install r-cran-packagename
Replace packagename with the package you want to install. In case of ggplot2 we need to run the following command.

sudo apt-get install r-cran-ggplot2