caffe-yolo icon indicating copy to clipboard operation
caffe-yolo copied to clipboard

unable to convert cfg into prototxt file

Open Hashirroshan opened this issue 6 years ago • 2 comments

by using python3 i edited ConfigParser into configparser/Configparser and reinstall these file using pip3 and also use ConfigPasrer in python2.7 , but i got the same error for all time

pi@pi-HP-280-G1-MT:~/Downloads/YoloV2NCS-master/models/yolomodels$ python3 create_yolo_prototxt.py Traceback (most recent call last): File "create_yolo_prototxt.py", line 2, in from ConfigParser import ConfigParser ImportError: No module named 'ConfigParser'

Pls help me out

Hashirroshan avatar Jul 27 '18 07:07 Hashirroshan

I have the same problems!

HardworkingPearl avatar Sep 06 '18 01:09 HardworkingPearl

In Python 3, ConfigParser has been renamed to configparser for PEP 8 compliance.

  1. check if already installed $ python3 $ import configparser if not installed , try : pip3 install configparser

if already installed then , try edit in your script and check.

narayangour avatar May 29 '19 11:05 narayangour