accel-brain / accel-brain-code

The purpose of this repository is to make prototypes as case study in the context of proof of concept(PoC) and research and development(R&D) that I have written in my website. The main research topics are Auto-Encoders in relation to the representation learning, the statistical machine learning for energy-based models, adversarial generation networks(GANs), Deep Reinforcement Learning such as Deep Q-Networks, semi-supervised learning, and neural network language model for natural language processing.
https://accel-brain.co.jp
GNU General Public License v2.0
310 stars 92 forks source link

No module name 'pydbm' after pip install #4

Closed Whisht closed 5 years ago

Whisht commented 5 years ago

I have installed pydbm using pip, and the Dependencies numpy as well as cython was installed. image But there is no module named pydbm error. image Here is sys.path image It seems that pydbm miss sorce file in python/site-packages. image

helloWorld20484096 commented 5 years ago

Is there anyone can solve this? I encounter the same problem too.

chimera0 commented 5 years ago

I'am still investigating the reasons of how this happen.

If it's urgent, you can install this library with the following command:

cd Deep-Learning-by-means-of-Design-Pattern/
python setup.py bdist_wheel
pip install dist/pydbm-{version}-{hoge}.whl

Please try the above method after cloning this repository.

The essential problem solving takes a bit of a while. I have a lot of catching up to do this week.

chimera0 commented 5 years ago

I wrote a method for dealing with the trouble in README.

But I decided to leave the essential solution out of consideration from the point of view of cost performance. It is a less important issue and not so prompted widespread concern.

About 20 people who are forking may have noticed the problem of setuptools that we are currently observing, and eliminated the problem in the simple way described above, without asking a question.

F1nalFortune commented 5 years ago

Thanks @chimera0

That resolved the issue for me.