Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Can't install auto_backup module

Subscribe

Get notified when there's activity on this post

This question has been flagged
backupodooV8
16 Replies
23057 Views
Avatar
Cole

Hello, I'm trying to install the auto_backup module (https://apps.openerp.com/apps/modules/8.0/auto_backup/).

When I update modules to get it in odoo, this message is shown:

ImportError: This module needs pysftp to automaticly write backups to the FTP through SFTP.
Please install pysftp on your system. (sudo pip install pysftp)

I installed pysftp on my os (win7) and it's working (I can use and import the library in python codes), but I still get that error message in odoo. Do I need to install something else?

Any help is appreciated.




3
Avatar
Discard
Yenthe Van Ginneken (Mainframe Monkey)

Hi Cole, I'm the creator of this module. I haven't personally tested this module on Windows 7.. Only on Linux systems. In theory everything should be working since you say you can import the library in other Python files. Have you tried a reboot in the meanwhile? Just to be sure.

Cole
Author

Hi! Yes, I tried a reboot but it didn't help me.

gunnar

Even though it does not help you right now (because you are already on a W7 machine) ... you will receive more support on feedback on any issues you might be dealing if you use what most of the people are using (and what Odoo is mainly built for ... and that is Ubuntu or debian).

Yenthe Van Ginneken (Mainframe Monkey)

And I have to agree with Gunnar. You should really change to Ubuntu/debian. Much more knowledge from the community, more flexibility and this module will work fine out of the box as a bonus.

Cole
Author

Thank you for the advices :)

Avatar
Demian Rihs
Best Answer

You need to manually install pysftp module. 

First download the module:

wget https://pypi.python.org/packages/36/60/45f30390a38b1f92e0a8cf4de178cd7c2bc3f874c85430e40ccf99df8fe7/pysftp-0.2.9.tar.gz
tar xvzf pysftp-0.2.9.tar.gz
rm pysftp-0.2.9.tar.gz

Then install libffi:

sudo apt-get install libffi-dev

move into the exctracted pysftp-0.2.9 directory and run:

sudo python setup.py install

and finally restart odoo:

sudo service odoo-server restart

That should fix the issue

2
Avatar
Discard
Avatar
Yenthe Van Ginneken (Mainframe Monkey)
Best Answer

Hi guys,

This issue can have two reasons. The first being that Odoo/Python cannot access pysftp, the second being an underlaying package that is used by pysftp that is causing issues. First test issue 1, since it is easier:

It looks like sometimes the pysftp library is restricted too much on Linux, in which case Odoo cannot access it. The easiest solution to change this is to give the main pysftp repository (the package) more rights:

sudo chmod -R 755 /usr/local/lib/python2.7/dist-packages/pysftp

In some cases it looks like you even need a 777 in regards to rights. After doing this and restarting the Odoo service you should be able to use the pysftp library with Odoo though.

If this does not work the underlaying problem may be coming from Paramiko (or a package that Paramiko requires) which pysftp needs. You can test this by creating a simple Python file that imports pysftp and by just running it. If you get an output along the lines of:

administrator@admin:~$ python pysftp_tester.py Traceback (most recent call last):
  File "pysftp_tester.py", line 1, in <module>    import pysftp  File "build/bdist.linux-x86_64/egg/pysftp/__init__.py", line 12, in <module>  File "/usr/local/lib/python2.7/dist-packages/paramiko/__init__.py", line 30, in <module>    from paramiko.transport import SecurityOptions, Transport  File "/usr/local/lib/python2.7/dist-packages/paramiko/transport.py", line 32, in <module>    from cryptography.hazmat.backends import default_backend
This means that there is an underlaying package that is missing. Now re-run the installer for cryptography:
pip install cryptography --force-reinstall
After running this command test again if your simple Python file works that imports pysftp, it should now be fixed! If the import of pysftp succeeds you need to restart the odoo service and install the auto_backup module.


Regards,
Yenthe

1
Avatar
Discard
Avatar
wizardz
Best Answer

auto_backup module is not working with the new debiant Odoo8 Version on Ubuntu 14.04

If pysftp is installed and you want to install the auto_backup modules, it says that pysftp is not installed.

But pysftp 0.2.8 is correctly installed and tested. auto_backup module need a refresh I think.

1
Avatar
Discard
wizardz

anybody has a fix for this issue?

wizardz

Requirement already satisfied (use --upgrade to upgrade): pysftp in /usr/local/lib/python2.7/dist-packages Requirement already satisfied (use --upgrade to upgrade): paramiko>=1.7.7 in /usr/local/lib/python2.7/dist-packages (from pysftp) Cleaning up...

Avatar
Keenmeng Lew
Best Answer

Hi!

I use Odoo v9 Community.  After moving the auto_backup folder into my addons folder and restarted, I get an Internal Server Error.  Is there something else I might have missed?


KM 

0
Avatar
Discard
Avatar
YASSER LIMAM
Best Answer

  • Instllation of librairies and dépendances 

          • sudo apt-get install python-pip python-dev build-essential
          • sudo apt-get install build-essential libssl-dev libffi-dev python-dev
          • sudo pip install --upgrade pip sudo pip install --upgrade virtualenv
          • sudo pip install pysftp
0
Avatar
Discard
Avatar
Edser Solis
Best Answer

Have you got any fix for this? I'm also getting the error that pysftp is not installed when it actually is installed.

0
Avatar
Discard
Avatar
Riccardo Branoner
Best Answer

Hello there,

I'm sorry to warm up this old thread. But I tried all the suggested solutions here (and on some other pages I found via google).

I'm still having this paramiko not found issue. And of course I tried to (re)install paramiko and pysftp (which was successful with pip3 and force reinstall), but still not running. And YES, I did server restart (and even reboot, since I dont trust myself. ;-)

I'm on odoo 13 on a ubuntu 20.04 server, installed 3 instances of odoo with different ports.

Are there any news in teh meantime for installing auto_backup with running paramiko?

I'm really thankful for any answers.

Regards, Riccardo


P.S.: Sure, I attach my log, but it's the same as I found above :-(

Error:

Odoo Server Error
Traceback (most recent call last):
  File "/opt/odoo-demo/odoo/addons/auto_backup/models/db_backup.py", line 18, in <module>
    import paramiko
ModuleNotFoundError: No module named 'paramiko'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
  File "/opt/odoo-demo/odoo/http.py", line 624, in _handle_exception
    return super(JsonRequest, self)._handle_exception(exception)
  File "/opt/odoo-demo/odoo/http.py", line 310, in _handle_exception
    raise pycompat.reraise(type(exception), exception, sys.exc_info()[2])
  File "/opt/odoo-demo/odoo/tools/pycompat.py", line 14, in reraise
    raise value
  File "/opt/odoo-demo/odoo/http.py", line 669, in dispatch
    result = self._call_function(**self.params)
  File "/opt/odoo-demo/odoo/http.py", line 350, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/opt/odoo-demo/odoo/service/model.py", line 94, in wrapper
    return f(dbname, *args, **kwargs)
  File "/opt/odoo-demo/odoo/http.py", line 339, in checked_call
    result = self.endpoint(*a, **kw)
  File "/opt/odoo-demo/odoo/http.py", line 915, in __call__
    return self.method(*args, **kw)
  File "/opt/odoo-demo/odoo/http.py", line 515, in response_wrap
    response = f(*args, **kw)
  File "/opt/odoo-demo/addons/web/controllers/main.py", line 1326, in call_button
    action = self._call_kw(model, method, args, kwargs)
  File "/opt/odoo-demo/addons/web/controllers/main.py", line 1314, in _call_kw
    return call_kw(request.env[model], method, args, kwargs)
  File "/opt/odoo-demo/odoo/api.py", line 387, in call_kw
    result = _call_kw_multi(method, model, args, kwargs)
  File "/opt/odoo-demo/odoo/api.py", line 374, in _call_kw_multi
    result = method(recs, *args, **kwargs)
  File "<decorator-gen-59>", line 2, in button_immediate_install
  File "/opt/odoo-demo/odoo/addons/base/models/ir_module.py", line 72, in check_and_log
    return method(self, *args, **kwargs)
  File "/opt/odoo-demo/odoo/addons/base/models/ir_module.py", line 463, in button_immediate_install
    return self._button_immediate_function(type(self).button_install)
  File "/opt/odoo-demo/odoo/addons/base/models/ir_module.py", line 573, in _button_immediate_function
    modules.registry.Registry.new(self._cr.dbname, update_module=True)
  File "/opt/odoo-demo/odoo/modules/registry.py", line 86, in new
    odoo.modules.load_modules(registry._db, force_demo, status, update_module)
  File "/opt/odoo-demo/odoo/modules/loading.py", line 421, in load_modules
    processed_modules += load_marked_modules(cr, graph,
  File "/opt/odoo-demo/odoo/modules/loading.py", line 313, in load_marked_modules
    loaded, processed = load_module_graph(
  File "/opt/odoo-demo/odoo/modules/loading.py", line 182, in load_module_graph
    load_openerp_module(package.name)
  File "/opt/odoo-demo/odoo/modules/module.py", line 376, in load_openerp_module
    __import__('odoo.addons.' + module_name)
  File "/opt/odoo-demo/odoo/addons/auto_backup/__init__.py", line 3, in <module>
    from . import models
  File "/opt/odoo-demo/odoo/addons/auto_backup/models/__init__.py", line 3, in <module>
    from . import db_backup
  File "/opt/odoo-demo/odoo/addons/auto_backup/models/db_backup.py", line 20, in <module>
    raise ImportError(
ImportError: This module needs paramiko to automatically write backups to the FTP through SFTP. Please install paramiko on your system. (sudo pip3 install paramiko)paramiko)
0
Avatar
Discard
Avatar
AKRAM
Best Answer

I'm also getting the error that pysftp is not installed when it actually is installed.

any explication for it please?

0
Avatar
Discard
Avatar
ray@vcloud9.com
Best Answer

Has this issue been addressed? I have been getting the same errors with Odoo 9ent....cant seem to get this module working, exact same issue described here.

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
Alternates to backup?
backup odooV8
Avatar
Avatar
Avatar
3
Sep 17
3927
Back up from Command
backup odooV8
Avatar
Avatar
2
Feb 16
4734
Need an explanation of backup formats
format backup odooV8
Avatar
1
Mar 19
6188
Automate Odoo V8 Databases Backup
script backup odooV8
Avatar
Avatar
Avatar
3
Nov 15
5742
Database backup error: Postgres subprocess ('/usr/bin/pg_dump', '--no-owner', '--file=/tmp/tmpAa0O5Q/dump.sql', u'ahlain_db01') error 1 Solved
backup
Avatar
Avatar
Avatar
Avatar
Avatar
9
Jul 25
67083
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now