# Code changes not getting reflected for Cert-Issuer

**URL:** https://community.blockcerts.org/t/code-changes-not-getting-reflected-for-cert-issuer/3090
**Category:** Technical
**Created:** [February 16, 2022, 5:23pm UTC](https://community.blockcerts.org/t/code-changes-not-getting-reflected-for-cert-issuer/3090 "2022-02-16T17:23:43Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![nitinb](https://avatars.discourse-cdn.com/v4/letter/n/82dd89/32.png) [@nitinb](https://community.blockcerts.org/u/nitinb)
#### Post date: [February 16, 2022, 5:23pm UTC](https://community.blockcerts.org/t/code-changes-not-getting-reflected-for-cert-issuer/3090/1 "2022-02-16T17:23:43Z")

</div>

I am trying todo some changes in Cert-Issuer module.

I checked **cert-issuer/setup.py** file which says :

> entry\_points={  
> ‘console\_scripts’: [  
> 'cert-issuer = **cert\_issuer.main:cert\_issuer\_main’,**  
> ]

So I changed cert\_issuer/ **main**.py file and added a logging.info at **line 23**.

 ![image](https://us1.discourse-cdn.com/flex016/uploads/blockcerts/original/1X/a351d91003cccff49706cdc7466c95480e049e6f.png)

**But I cannot see this change reflected when I issue the certificate : cert-issuer -c conf\_ethtest.ini**

Do I need to do something else to reflect the code changes like build the code ?  
or I am looking at some wrong place?

 ![image](https://us1.discourse-cdn.com/flex016/uploads/blockcerts/original/1X/e43d143f671624cf108d3a36b0550f9df8280666.png)

---

<div class="post-metadata">

### Author: ![jkwan](https://avatars.discourse-cdn.com/v4/letter/j/278dde/32.png) [@jkwan](https://community.blockcerts.org/u/jkwan)
#### Post date: [February 17, 2022, 12:09am UTC](https://community.blockcerts.org/t/code-changes-not-getting-reflected-for-cert-issuer/3090/2 "2022-02-17T00:09:05Z")

</div>

Try to run pip install .  
Maybe there are better way, but that would rebuild your code

---

<div class="post-metadata">

### Author: ![nitinb](https://avatars.discourse-cdn.com/v4/letter/n/82dd89/32.png) [@nitinb](https://community.blockcerts.org/u/nitinb)
#### Post date: [February 17, 2022, 12:33pm UTC](https://community.blockcerts.org/t/code-changes-not-getting-reflected-for-cert-issuer/3090/3 "2022-02-17T12:33:50Z")

</div>

Thanks @jkwan running pip3 install . **Worked**.  
I can see my changes now.

Next I am facing another issue while running cert issuer.

If I try to issue certificate via command **cert-issuer -c conf\_ethtest.ini**  
I am able to generate the certificate.

But if I try to issue certificate by command **python3 cert\_issuer/main.py**  
I get error - No module named chainpoint.

 ![image](https://us1.discourse-cdn.com/flex016/uploads/blockcerts/original/1X/1ea9dfd440f661bddccae74b34ba5aaf4df0c715.png)

I am not sure why this error is coming and that to **ModuleNotFound**.

**How can I issue Ethereum certificate by directly running a python (.py) file**

I tried **main**.py as I believe this file is the entry point for issuing certificate.
