I have written some example chisel code and try to run that, I am getting error following errors
] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:4: not found: object Chisel3
[error] import Chisel3._
[error] ^
[error] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:5: not found: object Chisel3
[error] import Chisel3.util._
[error] ^
[error] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:7: not found: type Module
[error] class FullAdder extends Module {
[error] ^
[error] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:8: not found: type Bundle
[error] val io = new Bundle {
[error] ^
[error] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:9: not found: value UInt
[error] val a = UInt(INPUT, 1 )
[error] ^
[error] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:10: not found: value UInt
[error] val b = UInt(INPUT, 1 )
[error] ^
[error] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:11: not found: value UInt
[error] val cin= UInt(INPUT, 1 )
[error] ^
[error] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:12: not found: value UInt
[error] val sum= UInt(OUTPUT, 1 )
[error] ^
[error] /home/sikkandar/project/chisel_tutorial/chisel_test/FullAdder.scala:13: not found: value UInt
[error] val cout= UInt(OUTPUT, 1)
[error] ^
[error] 9 errors found
Please let me know, how to run the Chisel code.